| 764 | } |
| 765 | |
| 766 | std::vector<std::string> WorkspaceObject_Impl::canBeTarget() const { |
| 767 | StringVector result; |
| 768 | if (!m_handle.isNull() && name()) { |
| 769 | result = iddObject().references(); |
| 770 | } |
| 771 | return result; |
| 772 | } |
| 773 | |
| 774 | bool WorkspaceObject_Impl::objectListFieldsEqual(const WorkspaceObject& other) const { |
| 775 | // Looks for object equality of targets if same workspace(), otherwise, looks for data |
no test coverage detected