24 lines
332 B
Objective-C
24 lines
332 B
Objective-C
//
|
|
// NSString+MPExpressionElement.m
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 10.08.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "NSString+MPExpressionElement.h"
|
|
|
|
@implementation NSString (MPExpressionElement)
|
|
|
|
- (BOOL)isString
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)isFunction
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
@end
|