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