Copy SimObject to another SimObject (Originally designed for T2D).
| 2237 | |
| 2238 | // Copy SimObject to another SimObject (Originally designed for T2D). |
| 2239 | void SimObject::copyTo( SimObject* object ) |
| 2240 | { |
| 2241 | object->mClassName = mClassName; |
| 2242 | object->mSuperClassName = mSuperClassName; |
| 2243 | |
| 2244 | linkNamespaces(); |
| 2245 | } |
| 2246 | |
| 2247 | //----------------------------------------------------------------------------- |
| 2248 |
nothing calls this directly
no test coverage detected