Rev | Line | |
---|
[389] | 1 | #ifndef _IdentifierList_H__ |
---|
| 2 | #define _IdentifierList_H__ |
---|
| 3 | |
---|
| 4 | #include <string> |
---|
| 5 | |
---|
| 6 | namespace orxonox |
---|
| 7 | { |
---|
| 8 | class Identifier; |
---|
| 9 | |
---|
| 10 | class IdentifierListElement |
---|
| 11 | { |
---|
| 12 | public: |
---|
| 13 | IdentifierListElement(Identifier* identifier); |
---|
| 14 | ~IdentifierListElement(); |
---|
| 15 | |
---|
| 16 | Identifier* identifier_; |
---|
| 17 | IdentifierListElement* next_; |
---|
| 18 | bool bDirect_; |
---|
| 19 | }; |
---|
| 20 | |
---|
| 21 | class IdentifierList |
---|
| 22 | { |
---|
| 23 | public: |
---|
| 24 | IdentifierList(); |
---|
| 25 | ~IdentifierList(); |
---|
| 26 | void add(Identifier* identifier); |
---|
| 27 | void remove(Identifier* identifier); |
---|
| 28 | bool isInList(Identifier* identifier); |
---|
| 29 | std::string toString(); |
---|
| 30 | |
---|
| 31 | IdentifierListElement* first_; |
---|
| 32 | }; |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.