Changeset 9564 for code/branches/core6/src/libraries/network
- Timestamp:
- Mar 24, 2013, 6:08:42 PM (12 years ago)
- Location:
- code/branches/core6/src/libraries/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/network/packet/ClassID.cc
r8858 r9564 55 55 56 56 //calculate total needed size (for all strings and integers) 57 std::map<std::string, Identifier*>::const_iterator it = Identifier ::getStringIdentifierMapBegin();58 for(;it != Identifier ::getStringIdentifierMapEnd();++it){57 std::map<std::string, Identifier*>::const_iterator it = IdentifierManager::getStringIdentifierMapBegin(); 58 for(;it != IdentifierManager::getStringIdentifierMapEnd();++it){ 59 59 id = it->second; 60 60 if(id == NULL || !id->hasFactory()) … … 129 129 130 130 //clear the map of network ids 131 Identifier ::clearNetworkIDs();131 IdentifierManager::clearNetworkIDs(); 132 132 133 133 orxout(verbose, context::packets) << "=== processing classids: " << endl; -
code/branches/core6/src/libraries/network/synchronisable/Synchronisable.cc
r9556 r9564 83 83 { 84 84 // delete callback function objects 85 if(!Identifier ::isCreatingHierarchy()){85 if(!IdentifierManager::isCreatingHierarchy()){ 86 86 // remove object from the static objectMap 87 87 if (this->objectMode_ != 0x0 && (Host::running() && Host::isServer()))
Note: See TracChangeset
for help on using the changeset viewer.