#ifndef __VIEWCELLSDPARSER_H #define __VIEWCELLSDPARSER_H #include "Parser.h" #include "Containers.h" class ViewCellsManager; class VspBspTree; class ViewCellsParser : public Parser { public: ViewCellsParser():Parser() {} //bool ParseFile(const string filename, ViewCellsManager &viewCells); bool ParseFile(const string filename, ViewCellsManager **viewCells, ObjectContainer *objects); }; #endif