Reorganized File Structure
Added Documentation
This commit is contained in:
27
MathKit/MPEvaluationContext.h
Normal file
27
MathKit/MPEvaluationContext.h
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// MPEvaluationContext.h
|
||||
// MathPad
|
||||
//
|
||||
// Created by Kim Wittenburg on 12.09.14.
|
||||
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
|
||||
@class MPEvaluationContext;
|
||||
|
||||
|
||||
@interface MPEvaluationContext : NSObject
|
||||
|
||||
+ (MPEvaluationContext *)sharedContext;
|
||||
|
||||
- (void)push;
|
||||
- (void)pop;
|
||||
|
||||
- (BOOL)defineVariable:(NSString *)variable
|
||||
value:(NSDecimalNumber *)value;
|
||||
- (void)undefineVariable:(NSString *)variable;
|
||||
|
||||
- (NSDecimalNumber *)valueForVariable:(NSString *)variable;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user