| 74 | } |
| 75 | |
| 76 | void DataUtility::copyProperty(DataPtr _target, DataPtr _prototype) |
| 77 | { |
| 78 | for (Data::MapProperty::const_iterator property = _prototype->getProperties().begin(); |
| 79 | property != _prototype->getProperties().end(); |
| 80 | property++) |
| 81 | _target->setPropertyValue((*property).first, (*property).second->getValue()); |
| 82 | } |
| 83 | |
| 84 | std::string DataUtility::getUniqueName(DataPtr _parent, std::string_view _pattern) |
| 85 | { |
nothing calls this directly
no test coverage detected