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