Rev | Line | |
---|
[432] | 1 | // |
---|
| 2 | // C++ Interface: ClientInformation |
---|
| 3 | // |
---|
| 4 | // Description: |
---|
| 5 | // |
---|
| 6 | // |
---|
| 7 | // Author: <>, (C) 2007 |
---|
| 8 | // |
---|
| 9 | // Copyright: See COPYING file that comes with this distribution |
---|
| 10 | // |
---|
| 11 | // |
---|
| 12 | #ifndef NETWORKCLIENTINFORMATION_H |
---|
| 13 | #define NETWORKCLIENTINFORMATION_H |
---|
| 14 | |
---|
| 15 | namespace network { |
---|
| 16 | |
---|
| 17 | /** |
---|
| 18 | * This class implements a list for client informations |
---|
| 19 | * @author Oliver Scheuss |
---|
| 20 | */ |
---|
| 21 | class ClientInformation{ |
---|
| 22 | public: |
---|
| 23 | ClientInformation(); |
---|
| 24 | // ClientInformation(ClientInformation *prev, ClientInformation *next); |
---|
| 25 | // ClientInformation(ClientInformation *prev); |
---|
| 26 | ~ClientInformation(); |
---|
| 27 | ClientInformation *next(); |
---|
| 28 | ClientInformation *prev(); |
---|
| 29 | void setNext(ClientInformation *next); |
---|
| 30 | void setPrev(ClientInformation *prev); |
---|
| 31 | void insertAfter(ClientInformation *ins); |
---|
| 32 | void insertBefore(ClientInformation *ins); |
---|
| 33 | |
---|
| 34 | private: |
---|
| 35 | ClientInformation *preve; |
---|
| 36 | ClientInformation *nexte; |
---|
| 37 | }; |
---|
| 38 | |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.