Initial commit

This commit is contained in:
Keith Winstein
2010-12-28 18:05:50 -05:00
commit 52f527891c
7 changed files with 160 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef PARSE_HPP
#define PARSE_HPP
#include <wchar.h>
#include "parsertransition.hpp"
#include "parseraction.hpp"
#include "parserstate.hpp"
namespace Parser {
class Parser {
private:
State *state;
public:
Parser() : state( NULL ) {}
Parser( const Parser & );
bool operator=( const Parser & );
void input( wchar_t c ); /* should return list of actions */
~Parser() {}
};
}
#endif