| 100 | } |
| 101 | |
| 102 | void WorkspaceWatcher::objectRemove(const WorkspaceObject& removedObject, const openstudio::IddObjectType& /*type*/, |
| 103 | const openstudio::UUID& /*uuid*/) { |
| 104 | // Note: Args 2 & 3 are simply to comply with Nano::Signal template parameters |
| 105 | // let change() handle m_dirty and onChangeWorkspace(); |
| 106 | m_objectRemoved = true; |
| 107 | |
| 108 | if (enabled()) { |
| 109 | this->onObjectRemove(removedObject); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | } // namespace openstudio |
nothing calls this directly
no test coverage detected