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

Revision 749, 427 bytes checked in by bittner, 18 years ago (diff)

ply parser support

  • Property svn:executable set to *
Line 
1#ifndef __PLYPARSER_H
2#define __PLYPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
7class ViewCellsManager;
8
9class PlyParser : public Parser
10{
11public:
12  PlyParser():Parser() {}
13 
14  bool ParseFile(const string filename,
15                                 SceneGraphNode **root,
16                                 const bool loadPolygonsAsMeshes = false);
17
18  bool ParseFile(const string filename, ViewCellsManager &viewCells) { return false; }
19 
20};
21
22
23#endif
Note: See TracBrowser for help on using the repository browser.