Implemented parser

This commit is contained in:
Keith Winstein
2011-01-09 04:39:51 -05:00
parent 2f70137df0
commit d8ac8c15c2
5 changed files with 42 additions and 8 deletions
+8
View File
@@ -1,8 +1,16 @@
#include <vector>
#include "parser.hpp"
int main( void )
{
Parser::Parser parser;
std::vector<Parser::Action> a, b, c;
a = parser.input( 'x' );
b = parser.input( 'y' );
c = parser.input( 'z' );
return 0;
}