source: GTP/trunk/Lib/Vis/Preprocessing/src/UnigraphicsParser.h @ 860

Revision 860, 428 bytes checked in by mattausch, 18 years ago (diff)
Line 
1#ifndef __UNIGRAPHICSPARSER_H
2#define __UNIGRAPHICSPARSER_H
3
4#include <string>
5using namespace std;
6#include "Parser.h"
7
8namespace GtpVisibilityPreprocessor {
9
10class SceneGraphNode;
11
12class UnigraphicsParser : public Parser
13{
14public:
15
16  UnigraphicsParser(): Parser() {}
17 
18  virtual bool ParseFile(const string filename, SceneGraphNode **root, const bool loadPolygonsAsMeshes = false);
19 
20};
21
22}
23
24
25#endif
Note: See TracBrowser for help on using the repository browser.