18 lines
320 B
Objective-C
18 lines
320 B
Objective-C
//
|
|
// MPProduct.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 09.10.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPExpressionTreeElement.h"
|
|
|
|
@class MPProduct;
|
|
|
|
@interface MPProduct : NSObject <MPExpressionTreeElement>
|
|
|
|
@property (readonly, nonatomic, strong) NSArray *factors;
|
|
|
|
@end
|