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