16 lines
291 B
Objective-C
16 lines
291 B
Objective-C
//
|
|
// MPParenthesisFunction.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 17.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import <MathKit/MathKit.h>
|
|
|
|
@interface MPParenthesisFunction : MPFunction
|
|
|
|
@property (nonatomic, strong) MPExpression *expression;
|
|
|
|
@end
|