#ifndef __X3DPARSER_H #define __X3DPARSER_H #include "Parser.h" #include "Containers.h" class ViewCell; class X3dParser : public Parser { public: X3dParser():Parser() {} bool ParseFile(const string filename, SceneGraphNode **root); bool ParseFile(const string filename, ViewCellContainer &viewCells); }; #endif