Revision 863,
552 bytes
checked in by mattausch, 19 years ago
(diff) |
working on preprocessor integration
added iv stuff
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[749] | 1 | #ifndef __PLYPARSER_H
|
---|
| 2 | #define __PLYPARSER_H
|
---|
| 3 |
|
---|
| 4 | #include "Parser.h"
|
---|
| 5 | #include "Containers.h"
|
---|
| 6 |
|
---|
[863] | 7 | namespace GtpVisibilityPreprocessor {
|
---|
[860] | 8 |
|
---|
[749] | 9 | class ViewCellsManager;
|
---|
| 10 |
|
---|
| 11 | class PlyParser : public Parser
|
---|
| 12 | {
|
---|
| 13 | public:
|
---|
| 14 | PlyParser():Parser() {}
|
---|
| 15 |
|
---|
| 16 | bool ParseFile(const string filename,
|
---|
| 17 | SceneGraphNode **root,
|
---|
| 18 | const bool loadPolygonsAsMeshes = false);
|
---|
| 19 |
|
---|
| 20 | bool ParseFile(const string filename, ViewCellsManager &viewCells) { return false; }
|
---|
[752] | 21 |
|
---|
| 22 | bool
|
---|
| 23 | ParseSingleFile(const string filename,
|
---|
| 24 | SceneGraphNode *root);
|
---|
| 25 |
|
---|
[749] | 26 | };
|
---|
| 27 |
|
---|
[860] | 28 | }
|
---|
[749] | 29 |
|
---|
| 30 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.