Changeset 5522 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Nov 9, 2005, 5:00:26 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_manager.cc
r5520 r5522 30 30 31 31 32 33 32 /** 34 33 * standard deconstructor … … 37 36 {} 38 37 38 39 /** 40 * initializes the network manager 41 */ 42 void NetworkManager::initialize() 43 {} 44 45 46 /** 47 * shutsdown the network manager 48 */ 49 void NetworkManager::shutdown() 50 {} 51 52 53 /** 54 * creates a connection from one object to a host 55 * @param address: the address of the destination host 56 * @param synchronizeable: reference to the sync object 57 */ 58 void NetworkManager::establishConnection() 59 {} 60 61 62 /** 63 * teardown a connection 64 */ 65 void NetworkManager::shutdownConnection() 66 {} 67 68 69 /** 70 * registers a listener at the network manager 71 * @param listener: the reference to the listener to be added 72 */ 73 void NetworkManager::registerListener() 74 {} 75 76 /** 77 * sync the network 78 */ 79 void NetworkManager::synchronize() 80 {} 81 82 -
branches/network/src/lib/network/network_manager.h
r5521 r5522 19 19 NetworkManager(); 20 20 ~NetworkManager(); 21 22 21 23 22 void initialize(); 23 void sthudown(); 24 void establishConnection(); 25 void shutdownConnection(); 26 27 void registerListener(); 28 void synchronize(); 29 24 30 }; 25 31
Note: See TracChangeset
for help on using the changeset viewer.