Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 11, 2013, 9:07:38 PM (11 years ago)
Author:
landauf
Message:

made IdentifierManager a self-initializing singleton

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/src/libraries/core/class/Identifier.h

    r9634 r9640  
    346346
    347347        // Get the entry from the map
    348         ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*)IdentifierManager::getIdentifierSingleton(name, proposal);
     348        ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*)IdentifierManager::getInstance().getIdentifierSingleton(name, proposal);
    349349
    350350        if (ClassIdentifier<T>::classIdentifier_s == proposal)
     
    373373
    374374        object->identifier_ = this;
    375         if (IdentifierManager::isCreatingHierarchy())
     375        if (IdentifierManager::getInstance().isCreatingHierarchy())
    376376        {
    377377            if (bRootClass && !object->parents_)
Note: See TracChangeset for help on using the changeset viewer.