18 lines
333 B
Objective-C
18 lines
333 B
Objective-C
//
|
|
// MPPowerFunction.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 30.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPSuffixFunction.h"
|
|
|
|
@class MPPowerFunction, MPExpression;
|
|
|
|
@interface MPPowerFunction : MPSuffixFunction
|
|
|
|
@property (nonatomic, strong) MPExpression *exponentExpression;
|
|
|
|
@end
|