source: GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.h @ 860

Revision 860, 488 bytes checked in by mattausch, 18 years ago (diff)
Line 
1#ifndef __VIEWCELLSDPARSER_H
2#define __VIEWCELLSDPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
7namespace GtpVisibilityPreprocessor {
8
9class ViewCellsManager;
10class VspBspTree;
11
12class ViewCellsParser : public Parser
13{
14public:
15  ViewCellsParser():Parser() {}
16 
17  //bool ParseFile(const string filename, ViewCellsManager &viewCells);
18  bool ParseFile(const string filename,
19                                 ViewCellsManager **viewCells,
20                                 ObjectContainer *objects);
21};
22
23}
24
25#endif
Note: See TracBrowser for help on using the repository browser.