Archived
1

Some Code Improvements

Added Parenthesis Function
This commit is contained in:
Kim Wittenburg
2014-09-28 23:53:03 +02:00
parent 19a40c2907
commit c83661fb4d
3 changed files with 257 additions and 34 deletions

View File

@@ -0,0 +1,16 @@
//
// 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