source: GTP/trunk/Lib/Vis/Preprocessing/src/Parser.h @ 860

Revision 860, 368 bytes checked in by mattausch, 18 years ago (diff)
Line 
1#ifndef __PARSER_H
2#define __PARSER_H
3
4#include <string>
5using namespace std;
6
7namespace GtpVisibilityPreprocessor {
8
9class SceneGraphNode;
10
11
12
13class Parser
14{
15public:
16  Parser() {}
17
18  virtual bool ParseFile(const string filename,
19                                                 SceneGraphNode **root,
20                                                 const bool loadPolygonsAsMeshes = false) {return false;};
21       
22};
23
24}
25
26#endif
Note: See TracBrowser for help on using the repository browser.