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

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