Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/ogre/Tools/3dsmaxExport/OgreExport/include/OgreMaxExport.h @ 11

Last change on this file since 11 was 6, checked in by anonymous, 17 years ago

=…

File size: 436 bytes
Line 
1#if !defined(__OGRE_MAX_EXPORT_H__)
2#define __OGRE_MAX_EXPORT_H__
3
4class ExpInterface;
5class Interface;
6
7namespace OgreMax {
8
9        class Config;
10
11        class OgreMaxExporter {
12        public:
13                OgreMaxExporter(const Config& config) : m_config(config) {}
14
15                void setMaxInterface(ExpInterface* ei, Interface* i) { m_ei = ei; m_i = i; }
16
17        protected:
18                // configuration data
19                const Config&   m_config;
20
21                ExpInterface *m_ei;
22                Interface *m_i;
23        };
24
25}
26
27#endif
Note: See TracBrowser for help on using the repository browser.