Copy SimObject to another SimObject (Originally designed for T2D).
| 2091 | |
| 2092 | // Copy SimObject to another SimObject (Originally designed for T2D). |
| 2093 | void SimObject::copyTo( SimObject* object ) |
| 2094 | { |
| 2095 | object->mClassName = mClassName; |
| 2096 | object->mSuperClassName = mSuperClassName; |
| 2097 | |
| 2098 | linkNamespaces(); |
| 2099 | } |
| 2100 | |
| 2101 | //----------------------------------------------------------------------------- |
| 2102 |
nothing calls this directly
no test coverage detected