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

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