| 216 | } |
| 217 | |
| 218 | IPluginV2Ext* CoordConvACPluginCreator::createPlugin(char const* name, PluginFieldCollection const* fc) noexcept |
| 219 | { |
| 220 | try |
| 221 | { |
| 222 | CoordConvACPlugin* plugin = new CoordConvACPlugin(); |
| 223 | plugin->setPluginNamespace(mNamespace.c_str()); |
| 224 | return plugin; |
| 225 | } |
| 226 | catch (std::exception const& e) |
| 227 | { |
| 228 | caughtError(e); |
| 229 | } |
| 230 | return nullptr; |
| 231 | } |
| 232 | |
| 233 | IPluginV2Ext* CoordConvACPluginCreator::deserializePlugin( |
| 234 | char const* name, void const* serialData, size_t serialLength) noexcept |
nothing calls this directly
no test coverage detected