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

Revision 2600, 485 bytes checked in by mattausch, 16 years ago (diff)

preparing for moving objects (contains compile errors!)

Line 
1#ifndef __PARSER_H
2#define __PARSER_H
3
4#include <string>
5#include <vector>
6
7#include "Intersectable.h"
8
9namespace GtpVisibilityPreprocessor {
10
11class SceneGraphNode;
12class SceneGraphLeaf;
13class Intersectable;
14
15
16class Parser
17{
18public:
19  Parser() {}
20
21  virtual bool ParseFile(const std::string filename,
22                                                 SceneGraphLeaf *root,
23                                                 const bool loadMeshes = true,
24                                                 std::vector<FaceParentInfo> *parents = NULL)
25  {return false;}
26       
27};
28
29}
30
31#endif
Note: See TracBrowser for help on using the repository browser.