Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchie/src/OrxonoxClass.h @ 162

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

it starts to work, but there is still much to do.

@bensch: thanks for you mail, but i can't tell you much at the moment - i'm still changing lots of things and i have no idea if everything will work as intendet, so i'll write you as soon as i have reliable informations :)
</abuse log for pms>

File size: 671 bytes
Line 
1#ifndef _OrxonoxClass_H__
2#define _OrxonoxClass_H__
3
4namespace orxonox
5{
6    class Identifier;
7    class IdentifierList;
8
9    class OrxonoxClass
10    {
11        public:
12            OrxonoxClass();
13            ~OrxonoxClass();
14            Identifier* getIdentifier() { return this->identifier_; }
15            void setIdentifier(Identifier* identifier) { this->identifier_ = identifier; }
16            IdentifierList* getParents() { return this->parents_; }
17            void setParents(IdentifierList* parents) { this->parents_ = parents; }
18
19        private:
20            Identifier* identifier_;
21            IdentifierList* parents_;
22    };
23}
24
25#endif
Note: See TracBrowser for help on using the repository browser.