38 lines
904 B
Objective-C
38 lines
904 B
Objective-C
//
|
|
// MathKit.h
|
|
// MathKit
|
|
//
|
|
// Created by Kim Wittenburg on 06.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPExpression.h"
|
|
#import "NSString+MPExpressionElement.h"
|
|
#import "MPFunction.h"
|
|
#import "MPToken.h"
|
|
#import "MPFunction+MPToken.h"
|
|
|
|
#import "MPFractionFunction.h"
|
|
#import "MPParenthesisFunction.h"
|
|
#import "MPPowerFunction.h"
|
|
#import "MPSumFunction.h"
|
|
|
|
#import "MPParsedExpression.h"
|
|
#import "MPTerm.h"
|
|
#import "MPEvaluationContext.h"
|
|
#import "MPMathRules.h"
|
|
|
|
#import "MPRangePath.h"
|
|
#import "NSIndexPath+MPAdditions.h"
|
|
#import "NSRegularExpression+MPParsingAdditions.h"
|
|
|
|
#import "MPExpressionStorage.h"
|
|
#import "MPExpressionView.h"
|
|
#import "MPLayout.h"
|
|
#import "MPExpressionLayout.h"
|
|
#import "MPFunctionLayout.h"
|
|
|
|
#import "MPFractionFunctionLayout.h"
|
|
#import "MPParenthesisFunctionLayout.h"
|
|
#import "MPPowerFunctionLayout.h"
|
|
#import "MPSumFunctionLayout.h" |