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

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