Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 20, 2005, 2:51:37 PM (18 years ago)
Author:
rennerc
Message:

synchronizeable: added sender parameter to writeBytes
network_stream: creates now a network_game_manager
network_game_manager: implemented some functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_stream.h

    r6139 r6190  
    2020class ConnectionMonitor;
    2121class NetworkProtocol;
     22class NetworkGameManager;
    2223
    2324typedef std::list<Synchronizeable*>  SynchronizeableList;
     
    4849    virtual void processData();
    4950
     51    inline SynchronizeableList::const_iterator getSyncBegin(){ return synchronizeables.begin(); }
     52    inline SynchronizeableList::const_iterator getSyncEnd(){ return synchronizeables.end(); }
     53
    5054  private:
    5155    NetworkProtocol*       networkProtocol;
     
    6367    int                    maxConnections;
    6468
     69    NetworkGameManager*   networkGameManager;
     70
    6571    void updateConnectionList();
    6672};
Note: See TracChangeset for help on using the changeset viewer.