source: GTP/trunk/Lib/Vis/Preprocessing/src/PlyParser.h @ 863

Revision 863, 552 bytes checked in by mattausch, 18 years ago (diff)

working on preprocessor integration
added iv stuff

  • Property svn:executable set to *
Line 
1#ifndef __PLYPARSER_H
2#define __PLYPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
7namespace GtpVisibilityPreprocessor {
8
9class ViewCellsManager;
10
11class PlyParser : public Parser
12{
13public:
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; }
21
22  bool
23  ParseSingleFile(const string filename,
24                                  SceneGraphNode *root);
25       
26};
27
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.