Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

network/lib/network: some help added to the network manager

File size: 538 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 shutdown();
24  void establishConnection(/* address, port, object reference*/);
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.