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

Revision 863, 411 bytes checked in by mattausch, 18 years ago (diff)

working on preprocessor integration
added iv stuff

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