Revision 2600,
485 bytes
checked in by mattausch, 17 years ago
(diff) |
preparing for moving objects (contains compile errors!)
|
Line | |
---|
1 | #ifndef __PARSER_H
|
---|
2 | #define __PARSER_H
|
---|
3 |
|
---|
4 | #include <string>
|
---|
5 | #include <vector>
|
---|
6 |
|
---|
7 | #include "Intersectable.h"
|
---|
8 |
|
---|
9 | namespace GtpVisibilityPreprocessor {
|
---|
10 |
|
---|
11 | class SceneGraphNode;
|
---|
12 | class SceneGraphLeaf;
|
---|
13 | class Intersectable;
|
---|
14 |
|
---|
15 |
|
---|
16 | class Parser
|
---|
17 | {
|
---|
18 | public:
|
---|
19 | Parser() {}
|
---|
20 |
|
---|
21 | virtual bool ParseFile(const std::string filename,
|
---|
22 | SceneGraphLeaf *root,
|
---|
23 | const bool loadMeshes = true,
|
---|
24 | std::vector<FaceParentInfo> *parents = NULL)
|
---|
25 | {return false;}
|
---|
26 |
|
---|
27 | };
|
---|
28 |
|
---|
29 | }
|
---|
30 |
|
---|
31 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.