#include #include #include "parser.hpp" int main( void ) { Parser::Parser parser; std::vector a, b, c; a = parser.input( 'x' ); b = parser.input( 'y' ); c = parser.input( 'z' ); std::cout << a[0].name; return 0; }