| 50 | m_targetData(other.m_targetData) {} |
| 51 | |
| 52 | std::vector<IdfObject> WorkspaceObject_Impl::remove() { |
| 53 | std::vector<IdfObject> result; |
| 54 | result.push_back(this->idfObject()); |
| 55 | bool ok = this->workspace().removeObject(this->handle()); |
| 56 | OS_ASSERT(ok); |
| 57 | return result; |
| 58 | } |
| 59 | |
| 60 | void WorkspaceObject_Impl::initializeOnAdd(bool expectToLosePointers) { |
| 61 | OS_ASSERT(m_workspace); |