Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_manager.h @ 5522

Last change on this file since 5522 was 5522, checked in by patrick, 18 years ago

src/lib/network: the implementaion of the networkmanager is finished

File size: 502 bytes
Line 
1/*!
2 * @file network_manager.h
3  *  Main interface for the network module. Manages all the modules
4
5*/
6
7#ifndef _NETWORK_MANGER
8#define _NETWORK_MANAGER
9
10#include "base_object.h"
11
12
13
14class NetworkManager : public BaseObject
15{
16
17public:
18
19  NetworkManager();
20  ~NetworkManager();
21 
22  void initialize();
23  void sthudown();
24  void establishConnection();
25  void shutdownConnection();
26 
27  void registerListener();
28  void synchronize();
29 
30};
31
32
33
34#endif /* _NETWORK_MANAGER */
Note: See TracBrowser for help on using the repository browser.