Set plugin namespace
| 234 | |
| 235 | // Set plugin namespace |
| 236 | void FlattenConcat::setPluginNamespace(char const* pluginNamespace) noexcept |
| 237 | { |
| 238 | try |
| 239 | { |
| 240 | mPluginNamespace = pluginNamespace; |
| 241 | } |
| 242 | catch (std::exception const& e) |
| 243 | { |
| 244 | caughtError(e); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | char const* FlattenConcat::getPluginNamespace() const noexcept |
| 249 | { |
no test coverage detected