Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9406 in orxonox.OLD for trunk/src/util/object_manager.cc


Ignore:
Timestamp:
Jul 24, 2006, 11:09:47 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the proxy back

merged with commandsvn merge -r9346:HEAD https://svn.orxonox.net/orxonox/branches/proxy .

no conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/object_manager.cc

    r9008 r9406  
    2626#include "debug.h"
    2727
    28 using namespace std;
     28
    2929SHELL_COMMAND(debug, ObjectManager, debug)
    3030    ->defaultValues("", 0);
     
    117117  {
    118118
    119     list<BaseObject*>::const_iterator node;
     119    std::list<BaseObject*>::const_iterator node;
    120120    for (node = objectList->begin(); node != objectList->end(); node++)
    121121      if ((dynamic_cast<PNode*>(*node)->getAbsCoor() - center.getAbsCoor()).len() < radius)
     
    140140      for (entity = this->objectLists[omList].begin(); entity != this->objectLists[omList].end(); entity++)
    141141      {
    142         PRINT(0)(" | %s::%s\n",(*entity)->getClassName(), (*entity)->getName());
     142        PRINT(0)(" | %s::%s\n",(*entity)->getClassCName(), (*entity)->getCName());
    143143      }
    144144    }
Note: See TracChangeset for help on using the changeset viewer.