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