Archived
1

Implemented Evaluation

This commit is contained in:
Kim Wittenburg
2014-09-07 16:45:31 +02:00
parent 8df8317413
commit 21bfe221ba
13 changed files with 593 additions and 96 deletions

View File

@@ -8,6 +8,8 @@
@import Foundation;
#import "MPParseError.h"
@protocol MPExpressionElement <NSObject, NSCopying, NSCoding>
- (BOOL)isString;
@@ -15,10 +17,6 @@
- (NSUInteger)length;
- (double)doubleValue;
- (float)floatValue;
- (int)intValue;
- (NSInteger)integerValue;
- (long long)longLongValue;
- (NSDecimalNumber *)evaluate:(MPParseError *__autoreleasing *)error;
@end