source: GTP/trunk/Lib/Vis/Preprocessing/src/ObjParser.h @ 2600

Revision 2600, 431 bytes checked in by mattausch, 16 years ago (diff)

preparing for moving objects (contains compile errors!)

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