| 288 | } |
| 289 | |
| 290 | std::set<std::string> IddObject_Impl::objectLists() const { |
| 291 | std::set<std::string> result; |
| 292 | for (const IddField& field : m_fields) { |
| 293 | const IddFieldProperties& properties = field.properties(); |
| 294 | result.insert(properties.objectLists.begin(), properties.objectLists.end()); |
| 295 | } |
| 296 | for (const IddField& field : m_extensibleFields) { |
| 297 | const IddFieldProperties& properties = field.properties(); |
| 298 | result.insert(properties.objectLists.begin(), properties.objectLists.end()); |
| 299 | } |
| 300 | return result; |
| 301 | } |
| 302 | |
| 303 | std::set<std::string> IddObject_Impl::objectLists(unsigned index) const { |
| 304 | std::set<std::string> result; |
no test coverage detected