source:
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.h
@
2176
Revision 2176, 580 bytes checked in by mattausch, 18 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[508] | 1 | #ifndef __VIEWCELLSDPARSER_H |
2 | #define __VIEWCELLSDPARSER_H | |
3 | ||
4 | #include "Parser.h" | |
5 | #include "Containers.h" | |
6 | ||
[860] | 7 | namespace GtpVisibilityPreprocessor { |
8 | ||
[508] | 9 | class ViewCellsManager; |
10 | class VspBspTree; | |
[931] | 11 | class BoundingBoxConverter; |
[938] | 12 | class Environment; |
[508] | 13 | |
[2123] | 14 | |
[2114] | 15 | class ViewCellsParser: public Parser |
[508] | 16 | { |
17 | public: | |
[2114] | 18 | ViewCellsParser(): Parser() {} |
[508] | 19 | |
[2176] | 20 | bool ParseViewCellsFile(const std::string &filename, |
[2113] | 21 | ViewCellsManager **viewCells, |
22 | ObjectContainer &pvsObjects, | |
23 | ObjectContainer &preprocessorObjects, | |
24 | BoundingBoxConverter *bconverter); | |
[508] | 25 | }; |
26 | ||
[860] | 27 | } |
[508] | 28 | |
29 | #endif |
Note: See TracBrowser
for help on using the repository browser.