20 lines
349 B
Objective-C
20 lines
349 B
Objective-C
//
|
|
// MPPowerFunctionLayout.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 30.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPFunctionLayout.h"
|
|
|
|
#import "MPPowerFunction.h"
|
|
|
|
@interface MPPowerFunctionLayout : MPFunctionLayout
|
|
|
|
@property (nonatomic) NSRect baseBounds;
|
|
|
|
- (MPPowerFunction *)powerFunction;
|
|
|
|
@end
|