24 lines
364 B
Objective-C
24 lines
364 B
Objective-C
//
|
|
// MPSumTerm.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 14.11.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPTerm.h"
|
|
|
|
|
|
|
|
@class MPSumTerm;
|
|
|
|
|
|
@interface MPSumTerm : MPTerm
|
|
|
|
- (instancetype)initWithSummands:(NSArray *)summands; /* designated initializer */
|
|
|
|
@property (readonly, nonatomic, strong) NSArray *summands;
|
|
|
|
@end
|
|
|