Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9725 in orxonox.OLD


Ignore:
Timestamp:
Sep 8, 2006, 11:42:52 PM (18 years ago)
Author:
bensch
Message:

orxonox/new_class_id: less debug

Location:
branches/new_class_id/src/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/lang/object_list.cc

    r9724 r9725  
    3131    : _name(className)
    3232{
    33   printf("ObjectList, Registered %s::%d\n", className.c_str(), id);
    3433  if (ObjectListBase::_classesByID == NULL)
    3534  {
     
    5049  _id = id;
    5150  /// Some Output, that will fall out later
    52   std::cout << "register new ObjectList " << className << " ID: " << this->_id << std::endl;
     51  //  std::cout << "register new ObjectList " << className << " ID: " << this->_id << std::endl;
    5352
    5453  this->_identity = ClassID(this);
     
    8685ObjectListBase::classIDMap* ObjectListBase::_classesByID = NULL;
    8786ObjectListBase::classNameMap* ObjectListBase::_classesByName = NULL;
     87std::list<std::string> ObjectListBase::_classNames;
    8888
    8989/**
  • branches/new_class_id/src/lib/util/loading/factory.cc

    r9715 r9725  
    3131    : _classID(classID)
    3232{
    33   printf("Factory::create(%s::%d)\n", classID.name().c_str(), classID.id());
     33  PRINTF(4)("Factory::create(%s::%d)\n", classID.name().c_str(), classID.id());
    3434  //this->registerObject(this, Factory::_objectList);
    3535  this->setName(classID.name());
Note: See TracChangeset for help on using the changeset viewer.