- Combined MPExpression and MPMutableExpression - Abstracted children of MPExpression into MPExpressionElement protocol - Abstracted most of MPExpressionLayout and MPFunctionLayout into common superclass MPLayout
12 lines
320 B
Objective-C
12 lines
320 B
Objective-C
//
|
|
// MPException.m
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 19.04.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPException.h"
|
|
|
|
NSString *MPIllegalElementException = @"MPIllegalSymbolException";
|
|
NSString *MPIllegalElementExceptionElementKey = @"MPIllegalSymbolExceptionSymbolKey"; |