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

Revision 1020, 355 bytes checked in by mattausch, 18 years ago (diff)

worked on view-object space partition
fixed some loading bugs
fixeds some exporting bugs using line segments
enabling other methods for view space sampling in ViewCellsManager? OBJECT_DIRECTION_BASED_DISTRIBUTION)
added class interface for a sampling strategy

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