// // MPSummand.h // MathPad // // Created by Kim Wittenburg on 09.10.14. // Copyright (c) 2014 Kim Wittenburg. All rights reserved. // #import #import "MPExpressionTreeElement.h" #import "MPProduct.h" #import "MPOperatorChain.h" @interface MPSummand : NSObject @property (nonatomic, strong) MPOperatorChain *operatorChain; @property (nonatomic, strong) MPProduct *product; @end