source: trunk/VUT/work/TestCullingTerrain/IoManager.h @ 105

Revision 105, 428 bytes checked in by mattausch, 19 years ago (diff)
Line 
1#ifndef _IoManager_H__
2#define _IoManager_H__
3
4#include <OgrePrerequisites.h>
5#include <OgreMath.h>
6#include <Ogre.h>
7#include <OgreSceneNode.h>
8
9class IoManager
10{
11public:
12        IoManager(Ogre::String fileName);
13
14        void Write();
15        void AddNode(Ogre::SceneNode *node);
16
17        std::vector<Ogre::Vector3> mPositions;
18        std::vector<Ogre::Quaternion> mOrientations;
19
20protected:
21        std::ofstream mFile;
22};
23
24#endif // IoManager
Note: See TracBrowser for help on using the repository browser.