Revision 863,
351 bytes
checked in by mattausch, 19 years ago
(diff) |
working on preprocessor integration
added iv stuff
|
Line | |
---|
1 | #ifndef __PARSER_H
|
---|
2 | #define __PARSER_H
|
---|
3 |
|
---|
4 | #include <string>
|
---|
5 |
|
---|
6 | namespace GtpVisibilityPreprocessor {
|
---|
7 |
|
---|
8 | class SceneGraphNode;
|
---|
9 |
|
---|
10 |
|
---|
11 |
|
---|
12 | class Parser
|
---|
13 | {
|
---|
14 | public:
|
---|
15 | Parser() {}
|
---|
16 |
|
---|
17 | virtual bool ParseFile(const std::string filename,
|
---|
18 | SceneGraphNode **root,
|
---|
19 | const bool loadPolygonsAsMeshes = false) {return false;};
|
---|
20 |
|
---|
21 | };
|
---|
22 |
|
---|
23 | }
|
---|
24 |
|
---|
25 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.