Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 13, 2008, 6:39:53 PM (16 years ago)
Author:
landauf
Message:
  • Changed the ClassManager/IdentifierDistributor: ClassIdentifiers are now saved with the name returned by typeid(class).name() because this is a simple way getting the name without creating an object (which might be impossible because of non-public constructors or abstract functions).
  • Changed some debug outputs
File:
1 edited

Legend:

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

    r797 r811  
    870870        if (!file.is_open())
    871871        {
     872            COUT(1) << "An error occurred in ConfigValueContainer:" << std::endl;
    872873            COUT(1) << "Error: Couldn't open config-file " << filename << " to read the config values!" << std::endl;
    873874            return;
     
    916917        if (!file.is_open())
    917918        {
     919            COUT(1) << "An error occurred in ConfigValueContainer:" << std::endl;
    918920            COUT(1) << "Error: Couldn't open config-file " << filename << " to write the config values!" << std::endl;
    919921            return;
Note: See TracChangeset for help on using the changeset viewer.