| 88 | //----------------------------------------------------------------------------- |
| 89 | |
| 90 | SimPersistID* SimPersistID::create( SimObject* object ) |
| 91 | { |
| 92 | SimPersistID* pid = new SimPersistID( object ); |
| 93 | |
| 94 | #ifdef DEBUG_SPEW |
| 95 | Platform::outputDebugString( "[SimPersistID] Created new pid for object %i:%s (%s) with uuid '%s'", |
| 96 | object->getId(), object->getClassName(), object->getName(), |
| 97 | pid->getUUID().toString().c_str() ); |
| 98 | #endif |
| 99 | |
| 100 | return pid; |
| 101 | } |
| 102 | |
| 103 | //----------------------------------------------------------------------------- |
| 104 |
nothing calls this directly
no test coverage detected