00001 #ifndef _PARSER_H_ 00002 #define _PARSER_H_ 00003 00004 #include <string> 00005 #include "cglib/scene_graph_node.h" 00006 00007 class Parser 00008 { 00009 public: 00010 Parser(); 00011 virtual ~Parser (); 00012 Object *parse(std::string &file_name); 00013 00014 private: 00015 class ParserImplementation; 00016 ParserImplementation *self; 00017 }; 00018 00019 #endif /* _PARSER_H_ */