| 28 | |
| 29 | |
| 30 | ObjectOwnedBase::ObjectOwnedBase(const ObjectOwnedBase & o) |
| 31 | : NonCopyable() |
| 32 | , m_Name(o.m_Name) |
| 33 | { |
| 34 | if (o.m_OwnedByObjects) |
| 35 | { |
| 36 | sitkExceptionMacro("Unable to copy object with OwnedByObjects enabled."); |
| 37 | } |
| 38 | m_ReferencedObjectsCallbacks = o.m_ReferencedObjectsCallbacks; |
| 39 | } |
| 40 | |
| 41 | |
| 42 | std::string |
nothing calls this directly
no outgoing calls
no test coverage detected