source:
GTP/trunk/Lib/Vis/Preprocessing/src/Parser.h
@
1379
Revision 1379, 463 bytes checked in by mattausch, 18 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; |
[1221] | 12 | class Intersectable; |
[162] | 13 | |
14 | ||
15 | class Parser | |
16 | { | |
17 | public: | |
18 | Parser() {} | |
[339] | 19 | |
[1344] | 20 | virtual bool ParseFile(const std::string filename, |
21 | SceneGraphNode *root, | |
[1379] | 22 | const bool loadMeshes = true, |
[1281] | 23 | std::vector<FaceParentInfo> *parents = NULL) |
[1020] | 24 | {return false;}; |
[339] | 25 | |
[162] | 26 | }; |
27 | ||
[860] | 28 | } |
[162] | 29 | |
30 | #endif |
Note: See TracBrowser
for help on using the repository browser.