Files
mosh/parse.cpp
T
Keith Winstein 2ce73ca1d5 Action names
2011-01-10 00:24:25 -05:00

20 lines
270 B
C++

#include <vector>
#include <iostream>
#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' );
std::cout << a[0].name;
return 0;
}