Reorganized File Structure
Added Documentation
This commit is contained in:
24
MathKit/MPExpressionParser.h
Normal file
24
MathKit/MPExpressionParser.h
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// MPExpressionParser.h
|
||||
// MathPad
|
||||
//
|
||||
// Created by Kim Wittenburg on 16.11.14.
|
||||
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
|
||||
@class MPExpressionParser, MPExpression, MPParsedExpression;
|
||||
|
||||
|
||||
@interface MPExpressionParser : NSObject
|
||||
|
||||
@property (readonly, nonatomic, strong) MPExpression *expression;
|
||||
|
||||
- (instancetype)initWithExpression:(MPExpression *)expression;
|
||||
|
||||
- (MPParsedExpression *)parse:(NSArray *__autoreleasing *)errors;
|
||||
- (MPParsedExpression *)parseExpectingVariableDefinition:(BOOL)flag
|
||||
errors:(NSArray *__autoreleasing *)errors;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user