Revision 658,
324 bytes
checked in by mattausch, 19 years ago
(diff) |
added switch for loading polys as meshes
|
Rev | Line | |
---|
[162] | 1 | #ifndef __PARSER_H
|
---|
| 2 | #define __PARSER_H
|
---|
| 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | using namespace std;
|
---|
| 6 |
|
---|
| 7 | class SceneGraphNode;
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 |
|
---|
| 11 | class Parser
|
---|
| 12 | {
|
---|
| 13 | public:
|
---|
| 14 | Parser() {}
|
---|
[339] | 15 |
|
---|
[658] | 16 | virtual bool ParseFile(const string filename,
|
---|
| 17 | SceneGraphNode **root,
|
---|
| 18 | const bool loadPolygonsAsMeshes = false) {return false;};
|
---|
[339] | 19 |
|
---|
[162] | 20 | };
|
---|
| 21 |
|
---|
| 22 |
|
---|
| 23 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.