Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/core/BaseObject.h @ 742

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

moved all files from misc and the tinyxml folder into the new util folder

File size: 727 bytes
Line 
1/*!
2    @file BaseObject.h
3    @brief Definition of the BaseObject class.
4
5    The BaseObject is the parent of all classes representing an instance in the game.
6*/
7
8#ifndef _BaseObject_H__
9#define _BaseObject_H__
10
11#include "CorePrereqs.h"
12#include "util/tinyxml/TinyXMLPrereqs.h"
13
14#include "CoreIncludes.h"
15
16namespace orxonox
17{
18    //! The BaseObject is the parent of all classes representing an instance in the game.
19    class _CoreExport BaseObject : virtual public OrxonoxClass
20    {
21        public:
22            BaseObject();
23            virtual ~BaseObject();
24            virtual void loadParams(TiXmlElement* xmlElem);
25    };
26    ExportClass(BaseObject, Core);
27}
28
29#endif /* _BaseObject_H__ */
Note: See TracBrowser for help on using the repository browser.