Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 24, 2013, 6:08:42 PM (11 years ago)
Author:
landauf
Message:

moved static functions from Identifier.cc/h to IdentifierManager.cc/h (still static though)

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  
    5555
    5656  //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){
    5959    id = it->second;
    6060    if(id == NULL || !id->hasFactory())
     
    129129
    130130  //clear the map of network ids
    131   Identifier::clearNetworkIDs();
     131  IdentifierManager::clearNetworkIDs();
    132132
    133133  orxout(verbose, context::packets) << "=== processing classids: " << endl;
  • code/branches/core6/src/libraries/network/synchronisable/Synchronisable.cc

    r9556 r9564  
    8383  {
    8484    // delete callback function objects
    85     if(!Identifier::isCreatingHierarchy()){
     85    if(!IdentifierManager::isCreatingHierarchy()){
    8686      // remove object from the static objectMap
    8787      if (this->objectMode_ != 0x0 && (Host::running() && Host::isServer()))
Note: See TracChangeset for help on using the changeset viewer.