Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2761


Ignore:
Timestamp:
Mar 8, 2009, 5:08:57 PM (15 years ago)
Author:
rgrieder
Message:

Removed forgotten std::cout output in Factory (from objecthierarchy branch originally)
Removed CP_SLASH, it was a dead end anyway.

Location:
code/trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/OrxonoxConfig.h.in

    r2710 r2761  
    176176#endif
    177177
    178 
    179 /*---------------------------------
    180  * Various Settings
    181  *-------------------------------*/
    182 /* Define a platform independent directory separator */
    183 namespace orxonox
    184 {
    185 #ifdef ORXONOX_PLATFORM_WINDOWS
    186     const char CP_SLASH('\\');
    187 #else
    188     const char CP_SLASH('/');
    189 #endif
    190 }
    191 
    192 
    193178#endif /* _OrxonoxConfig_H__ */
  • code/trunk/src/core/Factory.cc

    r2759 r2761  
    7676        getFactoryPointer()->identifierStringMap_[name] = identifier;
    7777        getFactoryPointer()->identifierNetworkIDMap_[identifier->getNetworkID()] = identifier;
    78 //std::cout << identifier->getName() << ": " << identifier->getNetworkID() << std::endl;
    7978    }
    8079
     
    8988//        getFactoryPointer()->identifierNetworkIDMap_.erase(oldID);
    9089        getFactoryPointer()->identifierNetworkIDMap_[newID] = identifier;
    91 //std::cout << identifier->getName() << ": " << oldID << " -> " << newID << std::endl;
    9290    }
    9391
  • code/trunk/src/core/Factory.h

    r2759 r2761  
    6363            static void add(const std::string& name, Identifier* identifier);
    6464            static void changeNetworkID(Identifier* identifier, const uint32_t oldID, const uint32_t newID);
    65             static void cleanNetworkIDs();
     65            static void cleanNetworkIDs();
    6666            static void createClassHierarchy();
    6767
Note: See TracChangeset for help on using the changeset viewer.