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

Revision 2176, 580 bytes checked in by mattausch, 17 years ago (diff)

removed using namespace std from .h

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