Archived
1

Implemented the Sum Function

This commit is contained in:
Kim Wittenburg
2014-04-23 03:14:59 +02:00
parent 636921b9dc
commit cf13399747
4 changed files with 191 additions and 0 deletions

19
MathPad/MPSumFunction.h Normal file
View File

@@ -0,0 +1,19 @@
//
// MPSumFunction.h
// MathPad
//
// Created by Kim Wittenburg on 22.04.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPFunction.h"
@class MPSumFunction, MPExpression;
@interface MPSumFunction : MPFunction
@property (nonatomic, strong) MPExpression *startExpression;
@property (nonatomic, strong) MPExpression *targetExpression;
@property (nonatomic, strong) MPExpression *sumExpression;
@end