| 114 | } |
| 115 | |
| 116 | void EfficientNMSPlugin::setPluginNamespace(char const* pluginNamespace) noexcept |
| 117 | { |
| 118 | try |
| 119 | { |
| 120 | mNamespace = pluginNamespace; |
| 121 | } |
| 122 | catch (std::exception const& e) |
| 123 | { |
| 124 | caughtError(e); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | char const* EfficientNMSPlugin::getPluginNamespace() const noexcept |
| 129 | { |
no test coverage detected