| 1462 | //----------------------------------------------------------------------------- |
| 1463 | |
| 1464 | void SimObject::dumpGroupHierarchy() |
| 1465 | { |
| 1466 | String className( getClassName() ); |
| 1467 | String objectName( getName() ); |
| 1468 | |
| 1469 | Con::warnf( "[%i] %s - %s ->", getId(), className.c_str(), objectName.c_str() ); |
| 1470 | |
| 1471 | if ( mGroup ) |
| 1472 | mGroup->dumpGroupHierarchy(); |
| 1473 | } |
| 1474 | |
| 1475 | //============================================================================= |
| 1476 | // Events. |
no test coverage detected