Rev | Line | |
---|
[6] | 1 | #if !defined(__OGRE_MAX_EXPORT_H__) |
---|
| 2 | #define __OGRE_MAX_EXPORT_H__ |
---|
| 3 | |
---|
| 4 | class ExpInterface; |
---|
| 5 | class Interface; |
---|
| 6 | |
---|
| 7 | namespace 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.