Changeset 5575 in orxonox.OLD for branches/network
- Timestamp:
- Nov 15, 2005, 10:07:30 PM (19 years ago)
- Location:
- branches/network/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/defs/class_id.h
r5573 r5575 69 69 CL_ELEMENT_2D = 0x10000000, 70 70 71 CL_SYNC RONIZEABLE = 0x20000000,71 CL_SYNCHRONIZEABLE = 0x20000000, 72 72 73 73 CL_WORLD_ENTITY = 0x40000000, -
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.