source:
GTP/trunk/Lib/Vis/Preprocessing/src/Parser.h
@
1020
Revision 1020, 355 bytes checked in by mattausch, 18 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[162] | 1 | #ifndef __PARSER_H |
2 | #define __PARSER_H | |
3 | ||
4 | #include <string> | |
5 | ||
[860] | 6 | namespace GtpVisibilityPreprocessor { |
7 | ||
[162] | 8 | class SceneGraphNode; |
9 | ||
10 | ||
11 | ||
12 | class Parser | |
13 | { | |
14 | public: | |
15 | Parser() {} | |
[339] | 16 | |
[863] | 17 | virtual bool ParseFile(const std::string filename, |
[658] | 18 | SceneGraphNode **root, |
[1020] | 19 | const bool loadPolygonsAsMeshes = false) |
20 | {return false;}; | |
[339] | 21 | |
[162] | 22 | }; |
23 | ||
[860] | 24 | } |
[162] | 25 | |
26 | #endif |
Note: See TracBrowser
for help on using the repository browser.