17 lines
336 B
Objective-C
17 lines
336 B
Objective-C
//
|
|
// MPParenthesisFunctionLayout.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 17.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPFunctionLayout.h"
|
|
#import "MPParenthesisFunction.h"
|
|
|
|
@interface MPParenthesisFunctionLayout : MPFunctionLayout
|
|
|
|
- (MPParenthesisFunction *)parenthesisFunction;
|
|
|
|
@end
|