31 lines
656 B
Objective-C
31 lines
656 B
Objective-C
//
|
|
// MathKit.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 06.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPExpression.h"
|
|
#import "MPExpression.h"
|
|
#import "NSString+MPExpressionElement.h"
|
|
#import "MPFunction.h"
|
|
|
|
#import "MPSumFunction.h"
|
|
#import "MPParenthesisFunction.h"
|
|
#import "MPPowerFunction.h"
|
|
#import "MPFractionFunction.h"
|
|
|
|
#import "MPToken.h"
|
|
#import "MPFunction+MPToken.h"
|
|
|
|
|
|
#import "MPEvaluationContext.h"
|
|
#import "MPMathRules.h"
|
|
|
|
#import "MPRangePath.h"
|
|
#import "NSIndexPath+MPAdditions.h"
|
|
#import "NSRegularExpression+MPParsingAdditions.h"
|
|
|
|
#import "MPExpressionView.h"
|
|
#import "MPExpressionStorage.h" |