Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4596 in orxonox.OLD for orxonox/trunk/src/lib


Ignore:
Timestamp:
Jun 10, 2005, 11:41:49 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: one can now also tell Singleton-classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/lang/base_object.cc

    r4595 r4596  
    137137{
    138138  PRINT(0)("object %s of class %s: ", this->getName(), this->getClassName());
     139  if ((this->classID & CL_MASK_SINGLETON) == CL_MASK_SINGLETON)
     140    PRINT(0)("is a Singleton-Class ");
    139141  if (this->classID & CL_MASK_SUPER_CLASS)
    140142  {
    141     PRINT(0)("is a derived from the following superclasses:");
     143    PRINT(0)(" ->is a derived from the following superclasses:");
    142144    if (this->isA(CL_BASE_OBJECT))
    143145      PRINT(0)(" =BaseObject=");
Note: See TracChangeset for help on using the changeset viewer.