Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5522 in orxonox.OLD


Ignore:
Timestamp:
Nov 9, 2005, 5:00:26 PM (18 years ago)
Author:
patrick
Message:

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

Location:
branches/network/src/lib/network
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_manager.cc

    r5520 r5522  
    3030
    3131
    32 
    3332/**
    3433 *  standard deconstructor
     
    3736{}
    3837
     38
     39/**
     40 *  initializes the network manager
     41 */
     42void NetworkManager::initialize()
     43{}
     44
     45 
     46/**
     47 *  shutsdown the network manager
     48 */
     49void 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 */
     58void NetworkManager::establishConnection()
     59{}
     60
     61
     62/**
     63 *  teardown a connection
     64 */
     65void 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 */
     73void NetworkManager::registerListener()
     74{}
     75
     76/**
     77 *  sync the network
     78 */
     79void NetworkManager::synchronize()
     80{}
     81
     82
  • branches/network/src/lib/network/network_manager.h

    r5521 r5522  
    1919  NetworkManager();
    2020  ~NetworkManager();
    21 
    2221 
    23 
     22  void initialize();
     23  void sthudown();
     24  void establishConnection();
     25  void shutdownConnection();
     26 
     27  void registerListener();
     28  void synchronize();
     29 
    2430};
    2531
Note: See TracChangeset for help on using the changeset viewer.