| 509 | } |
| 510 | |
| 511 | void ProposalPlugin::setPluginNamespace(char const* libNamespace) noexcept |
| 512 | { |
| 513 | try |
| 514 | { |
| 515 | PLUGIN_VALIDATE(libNamespace == nullptr); |
| 516 | mNamespace = libNamespace; |
| 517 | } |
| 518 | catch (std::exception const& e) |
| 519 | { |
| 520 | caughtError(e); |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | void ProposalDynamicPlugin::setPluginNamespace(char const* libNamespace) noexcept |
| 525 | { |
no test coverage detected