| 67 | } |
| 68 | |
| 69 | IPluginV2Ext* SpecialSlicePluginCreator::deserializePlugin(char const* name, void const* data, size_t length) noexcept |
| 70 | { |
| 71 | try |
| 72 | { |
| 73 | return new SpecialSlice(data, length); |
| 74 | } |
| 75 | catch (std::exception const& e) |
| 76 | { |
| 77 | caughtError(e); |
| 78 | } |
| 79 | return nullptr; |
| 80 | } |
| 81 | |
| 82 | size_t SpecialSlice::getWorkspaceSize(int32_t) const noexcept |
| 83 | { |
nothing calls this directly
no test coverage detected