| 321 | } |
| 322 | |
| 323 | std::pair<int, int> Document::getVersionIntegers() const |
| 324 | { |
| 325 | if (!hasVersionString()) |
| 326 | { |
| 327 | return { MATERIALX_MAJOR_VERSION, MATERIALX_MINOR_VERSION }; |
| 328 | } |
| 329 | return InterfaceElement::getVersionIntegers(); |
| 330 | } |
| 331 | |
| 332 | vector<PortElementPtr> Document::getMatchingPorts(const string& nodeName) const |
| 333 | { |
no test coverage detected