source:
GTP/trunk/Lib/Vis/Preprocessing/src/Parser.h
@
2600
Revision 2600, 485 bytes checked in by mattausch, 17 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[162] | 1 | #ifndef __PARSER_H |
2 | #define __PARSER_H | |
3 | ||
4 | #include <string> | |
[1221] | 5 | #include <vector> |
[162] | 6 | |
[1281] | 7 | #include "Intersectable.h" |
[1221] | 8 | |
[860] | 9 | namespace GtpVisibilityPreprocessor { |
10 | ||
[162] | 11 | class SceneGraphNode; |
[2600] | 12 | class SceneGraphLeaf; |
[1221] | 13 | class Intersectable; |
[162] | 14 | |
15 | ||
16 | class Parser | |
17 | { | |
18 | public: | |
19 | Parser() {} | |
[339] | 20 | |
[1344] | 21 | virtual bool ParseFile(const std::string filename, |
[2600] | 22 | SceneGraphLeaf *root, |
[1379] | 23 | const bool loadMeshes = true, |
[1281] | 24 | std::vector<FaceParentInfo> *parents = NULL) |
[1786] | 25 | {return false;} |
[339] | 26 | |
[162] | 27 | }; |
28 | ||
[860] | 29 | } |
[162] | 30 | |
31 | #endif |
Note: See TracBrowser
for help on using the repository browser.