19 lines
374 B
Objective-C
19 lines
374 B
Objective-C
//
|
|
// MPRootFunctionLayout.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 22.10.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPFunctionLayout.h"
|
|
#import "MPRootFunction.h"
|
|
|
|
@interface MPRootFunctionLayout : MPFunctionLayout
|
|
|
|
- (MPRootFunction *)rootFunction;
|
|
|
|
@property (nonatomic, getter=isExponentImplicit) BOOL exponentImplicit;
|
|
|
|
@end
|