Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/network/ClientConnectionListener.h @ 1939

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

forgot some things

  • Property svn:eol-style set to native
File size: 501 bytes
Line 
1#ifndef _NETWORK_CLIENTCONNECTIONLISTENER__
2#define _NETWORK_CLIENTCONNECTIONLISTENER__
3
4#include "NetworkPrereqs.h"
5#include "ClientInformation.h"
6#include "core/OrxonoxClass.h"
7
8namespace network{
9
10  class _NetworkExport ClientConnectionListener : public orxonox::OrxonoxClass
11  {
12  public:
13    ClientConnectionListener();
14
15    void getConnectedClients();
16
17    virtual void clientConnected(unsigned int clientID) = 0;
18    virtual void clientDisconnected(unsigned int clientID) = 0;
19  };
20
21}
22
23
24#endif
Note: See TracBrowser for help on using the repository browser.