| 691 | } |
| 692 | |
| 693 | void FCPluginDynamic::setPluginNamespace(char const* libNamespace) noexcept |
| 694 | { |
| 695 | try |
| 696 | { |
| 697 | PLUGIN_VALIDATE(libNamespace != nullptr); |
| 698 | mNamespace = libNamespace; |
| 699 | } |
| 700 | catch (std::exception const& e) |
| 701 | { |
| 702 | caughtError(e); |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | char const* FCPluginDynamic::getPluginNamespace() const noexcept |
| 707 | { |
no test coverage detected