Changeset 5575 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Nov 15, 2005, 10:07:30 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
r5572 r5575 74 74 { 75 75 /* set the class id for the base object */ 76 //this->setClassID(CL_NETWORK_MANAGER, "NetworkManager");76 this->setClassID(CL_NETWORK_MANAGER, "NetworkManager"); 77 77 /* initialize the references */ 78 78 this->netStreamList = NULL; … … 94 94 { 95 95 /* get the synchronizeable list from the class list */ 96 //this->netStreamList = ClassList::getClassList(/*CL_SYNCHRONIZEABLE*/0x0);96 this->netStreamList = ClassList::getList(CL_SYNCHRONIZEABLE); 97 97 } 98 98 -
branches/network/src/lib/network/network_manager.h
r5572 r5575 36 36 37 37 private: 38 tList< NetworkStream>* netStreamList; // list with refs to all network streams39 tList< Synchronizeable>* syncList; // list of synchronizeables38 tList<BaseObject>* netStreamList; // list with refs to all network streams 39 tList<BaseObject>* syncList; // list of synchronizeables 40 40 41 41 };
Note: See TracChangeset
for help on using the changeset viewer.