| 169 | } |
| 170 | |
| 171 | string parentNamePath(const string& namePath) |
| 172 | { |
| 173 | StringVec nameVec = splitNamePath(namePath); |
| 174 | if (!nameVec.empty()) |
| 175 | { |
| 176 | nameVec.pop_back(); |
| 177 | return createNamePath(nameVec); |
| 178 | } |
| 179 | return EMPTY_STRING; |
| 180 | } |
| 181 | |
| 182 | MATERIALX_NAMESPACE_END |
nothing calls this directly
no test coverage detected