source: trunk/VUT/GtpVisibilityPreprocessor/src/X3dParser.h @ 312

Revision 312, 395 bytes checked in by mattausch, 19 years ago (diff)

bsp split exporter added

RevLine 
[162]1#ifndef __X3DPARSER_H
2#define __X3DPARSER_H
3
[170]4#include "Parser.h"
[261]5#include "Containers.h"
[162]6
[261]7class ViewCell;
8
[162]9class X3dParser : public Parser
10{
11public:
[312]12  X3dParser():Parser(), mViewCellHeight(5.0f) {}
[162]13 
14  bool ParseFile(const string filename, SceneGraphNode **root);
[261]15  bool ParseFile(const string filename, ViewCellContainer &viewCells);
[312]16
17  float mViewCellHeight;
[162]18};
19
20
21#endif
Note: See TracBrowser for help on using the repository browser.