| 78 | //----------------------------------------------------------------------------- |
| 79 | |
| 80 | SimPersistID* SimPersistID::create( SimObject* object ) |
| 81 | { |
| 82 | SimPersistID* pid = new SimPersistID( object ); |
| 83 | |
| 84 | #ifdef DEBUG_SPEW |
| 85 | Platform::outputDebugString( "[SimPersistID] Created new pid for object %i:%s (%s) with uuid '%s'", |
| 86 | object->getId(), object->getClassName(), object->getName(), |
| 87 | pid->getUUID().toString().c_str() ); |
| 88 | #endif |
| 89 | |
| 90 | return pid; |
| 91 | } |
| 92 | |
| 93 | //----------------------------------------------------------------------------- |
| 94 |
nothing calls this directly
no test coverage detected