20 lines
473 B
Objective-C
20 lines
473 B
Objective-C
//
|
|
// MPFunctionValue.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 11.10.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPTerm.h"
|
|
|
|
@class MPElementaryFunctionTerm, MPValueGroup;
|
|
|
|
@interface MPElementaryFunctionTerm : MPTerm
|
|
|
|
- (instancetype)initWithFunctionIdentifier:(NSString *)function
|
|
term:(MPTerm *)term; /* designated initializer */
|
|
|
|
@property (readonly, nonatomic, strong) MPTerm *term;
|
|
|
|
@end |