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

Revision 931, 558 bytes checked in by mattausch, 18 years ago (diff)

added bounding boxes to xml description

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;
11class BoundingBoxConverter;
12
13class ViewCellsParser : public Parser
14{
15public:
16  ViewCellsParser():Parser() {}
17 
18  //bool ParseFile(const string filename, ViewCellsManager &viewCells);
19  bool ParseFile(const string filename,
20                                 ViewCellsManager **viewCells,
21                                 ObjectContainer *objectsm,
22                                 BoundingBoxConverter *bconverter);
23};
24
25}
26
27#endif
Note: See TracBrowser for help on using the repository browser.