| 54 | } |
| 55 | |
| 56 | IPluginV2Ext* SpecialSlicePluginCreator::createPlugin(char const* name, PluginFieldCollection const* fc) noexcept |
| 57 | { |
| 58 | try |
| 59 | { |
| 60 | return new SpecialSlice(); |
| 61 | } |
| 62 | catch (std::exception const& e) |
| 63 | { |
| 64 | caughtError(e); |
| 65 | } |
| 66 | return nullptr; |
| 67 | } |
| 68 | |
| 69 | IPluginV2Ext* SpecialSlicePluginCreator::deserializePlugin(char const* name, void const* data, size_t length) noexcept |
| 70 | { |
nothing calls this directly
no test coverage detected