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

Revision 1221, 450 bytes checked in by mattausch, 18 years ago (diff)

added intel ray tracing

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