Archived
1

Started to Implement the Parser

This commit is contained in:
Kim Wittenburg
2014-09-06 01:54:15 +02:00
parent 6aafbf9d2e
commit 8df8317413
10 changed files with 570 additions and 16 deletions

20
MathPad/MPMath.h Normal file
View File

@@ -0,0 +1,20 @@
//
// YYParse.h
// MathPad
//
// Created by Kim Wittenburg on 05.09.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPMath.yy.h"
#import "MPMath.tab.h"
#import "MPParsedElement.h"
#ifndef MathPad_YYParse_h
#define MathPad_YYParse_h
extern MPParsedElement *parseResult;
int yyparse();
#endif