17 lines
335 B
Objective-C
17 lines
335 B
Objective-C
//
|
|
// MPPowerFunction.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 30.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import <MathKit/MathKit.h>
|
|
|
|
@interface MPPowerFunction : MPFunction
|
|
|
|
@property (nonatomic, strong) MPTerm *baseTerm;
|
|
@property (nonatomic, strong) MPExpression *exponentExpression;
|
|
|
|
@end
|