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

Revision 1379, 463 bytes checked in by mattausch, 18 years ago (diff)

fixed sah for objeect partition
loader for single triangles also for x3d

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 Intersectable;
13
14
15class Parser
16{
17public:
18  Parser() {}
19
20  virtual bool ParseFile(const std::string filename,
21                                                 SceneGraphNode *root,
22                                                 const bool loadMeshes = true,
23                                                 std::vector<FaceParentInfo> *parents = NULL)
24  {return false;};
25       
26};
27
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.