Archived
1

First implementation (incomplete) of MPExpression and MPFunction.

Declared custom exceptions in MPException.h
This commit is contained in:
Kim Wittenburg
2014-04-20 01:22:59 +02:00
parent 8244cdab4e
commit 01acd87b05
5 changed files with 718 additions and 0 deletions

14
MathPad/MPException.m Normal file
View File

@@ -0,0 +1,14 @@
//
// MPException.m
// MathPad
//
// Created by Kim Wittenburg on 19.04.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPException.h"
#import "MPException_Private.h"
NSString *MPIllegalSymbolException = @"MPIllegalSymbolException";
NSString *MPIllegalSymbolExceptionReason = @"Only NSString and MPFunction objects are valid symbols.";
NSString *MPIllegalSymbolExceptionSymbolKey = @"MPIllegalSymbolExceptionSymbolKey";