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

Revision 1281, 477 bytes checked in by bittner, 18 years ago (diff)

mlrt 16 ray tracing support

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