Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/objects/BaseObject.h @ 366

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

moved common object-functions and -variables (like isA() and name_) from BaseObject to OrxonoxClass, so they can still be used while iterating through a list of objects inheriting from an interface.

File size: 261 bytes
Line 
1#ifndef _BaseObject_H__
2#define _BaseObject_H__
3
4#include "../core/IdentifierIncludes.h"
5
6namespace orxonox
7{
8    class BaseObject : virtual public OrxonoxClass
9    {
10        public:
11            BaseObject();
12            virtual ~BaseObject();
13    };
14}
15
16#endif
Note: See TracBrowser for help on using the repository browser.