| 115 | |
| 116 | |
| 117 | std::set<std::string> Object::Structure::topLevelSubObjectNames() const |
| 118 | { |
| 119 | std::set<std::string> topLevelObjectNames; |
| 120 | |
| 121 | for (auto const& path: objectPaths) |
| 122 | if (!util::contains(path, '.') && path != objectName) |
| 123 | topLevelObjectNames.insert(path); |
| 124 | |
| 125 | return topLevelObjectNames; |
| 126 | } |
| 127 | |
| 128 | Object::Structure Object::summarizeStructure() const |
| 129 | { |
no test coverage detected