| 375 | } |
| 376 | |
| 377 | void CropAndResizePlugin::setPluginNamespace(char const* libNamespace) noexcept |
| 378 | { |
| 379 | try |
| 380 | { |
| 381 | PLUGIN_VALIDATE(libNamespace != nullptr); |
| 382 | mNamespace = libNamespace; |
| 383 | } |
| 384 | catch (std::exception const& e) |
| 385 | { |
| 386 | caughtError(e); |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | void CropAndResizeDynamicPlugin::setPluginNamespace(char const* libNamespace) noexcept |
| 391 | { |
no test coverage detected