Changeset 9640 for code/branches/core6/src/libraries/network
- Timestamp:
- Aug 11, 2013, 9:07:38 PM (11 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
r9564 r9640 55 55 56 56 //calculate total needed size (for all strings and integers) 57 std::map<std::string, Identifier*>::const_iterator it = IdentifierManager::get StringIdentifierMapBegin();58 for(;it != IdentifierManager::get StringIdentifierMapEnd();++it){57 std::map<std::string, Identifier*>::const_iterator it = IdentifierManager::getInstance().getStringIdentifierMapBegin(); 58 for(;it != IdentifierManager::getInstance().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 IdentifierManager:: clearNetworkIDs();131 IdentifierManager::getInstance().clearNetworkIDs(); 132 132 133 133 orxout(verbose, context::packets) << "=== processing classids: " << endl; -
code/branches/core6/src/libraries/network/synchronisable/Synchronisable.cc
r9631 r9640 80 80 { 81 81 // delete callback function objects 82 if(!IdentifierManager:: isCreatingHierarchy()){82 if(!IdentifierManager::getInstance().isCreatingHierarchy()){ 83 83 // remove object from the static objectMap 84 84 if (this->objectMode_ != 0x0 && (Host::running() && Host::isServer()))
Note: See TracChangeset
for help on using the changeset viewer.