Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/orxonox/objects/Model.h @ 845

Last change on this file since 845 was 845, checked in by landauf, 16 years ago

(1) removed ExportClass and ExportAbstractClass macros
(2) removed _UtilExport from templates

reto, i hope (2) removed some of your compiler errors and orxonox works still on your system with (1)

File size: 581 bytes
Line 
1#ifndef _Model_H__
2#define _Model_H__
3
4#include "../OrxonoxPrereqs.h"
5
6#include "WorldEntity.h"
7#include "../tools/Mesh.h"
8
9class TiXmlElement; // Forward declaration
10
11namespace orxonox
12{
13
14    class _OrxonoxExport Model : public WorldEntity
15    {
16        public:
17            Model();
18            virtual ~Model();
19            virtual void loadParams(TiXmlElement* xmlElem);
20            bool create();
21
22        private:
23            std::string meshSrc_;
24            Mesh mesh_;
25            void registerAllVariables();
26    };
27}
28
29#endif /* _Model_H__ */
Note: See TracBrowser for help on using the repository browser.