Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 12, 2008, 4:24:14 PM (16 years ago)
Author:
landauf
Message:

Added two new classes:

  • ClassManager, a helper class for ClassIdentifier
  • IdentifierDistributor, a class that hopefully allows unique ClassIdentifiers even with several libraries

In a first try it seemed to work, but it needs more testing. At least it solved a problem I discovered yesterday with multiple Identifiers for the type "BaseObject" on windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core/src/orxonox/core/Identifier.cc

    r790 r805  
    118118    /**
    119119        @returns a reference to the Identifier map, containing all Identifiers.
    120     */
     120    *//*
    121121    std::map<std::string, Identifier*>& Identifier::getIdentifierMap()
    122122    {
    123123        static std::map<std::string, Identifier*> identifierMapStaticReference = std::map<std::string, Identifier*>();
    124124        return identifierMapStaticReference;
    125     }
     125    }*/
    126126
    127127    /**
Note: See TracChangeset for help on using the changeset viewer.