| 971 | } |
| 972 | |
| 973 | bool Model::isExtensionUsed(const std::string& extensionName) const noexcept { |
| 974 | return std::find( |
| 975 | this->extensionsUsed.begin(), |
| 976 | this->extensionsUsed.end(), |
| 977 | extensionName) != this->extensionsUsed.end(); |
| 978 | } |
| 979 | |
| 980 | bool Model::isExtensionRequired( |
| 981 | const std::string& extensionName) const noexcept { |
no test coverage detected