17 lines
281 B
Objective-C
17 lines
281 B
Objective-C
//
|
|
// MPExpressionElement.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 10.08.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
@protocol MPExpressionElement <NSObject, NSCopying, NSCoding>
|
|
|
|
- (BOOL)isString;
|
|
- (BOOL)isFunction;
|
|
|
|
- (NSUInteger)length;
|
|
|
|
@end
|