Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/network/ClientInformation.h @ 432

Last change on this file since 432 was 432, checked in by scheusso, 16 years ago

and here come the files from r431 ;)

File size: 859 bytes
Line 
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
15namespace network {
16
17/**
18 * This class implements a list for client informations
19 * @author Oliver Scheuss
20*/
21class ClientInformation{
22public:
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 
34private:
35  ClientInformation *preve;
36  ClientInformation *nexte;
37};
38
39}
40
41#endif
Note: See TracBrowser for help on using the repository browser.