@brief The create instance function, the plugin must return an object derived from the \ref ImageEffect class */
| 1042 | |
| 1043 | /** @brief The create instance function, the plugin must return an object derived from the \ref ImageEffect class */ |
| 1044 | ImageEffect* |
| 1045 | SlitScanPluginFactory::createInstance(OfxImageEffectHandle handle, |
| 1046 | ContextEnum /*context*/) |
| 1047 | { |
| 1048 | return new SlitScanPlugin(handle); |
| 1049 | } |
| 1050 | |
| 1051 | static SlitScanPluginFactory p(kPluginIdentifier, kPluginVersionMajor, kPluginVersionMinor); |
| 1052 | mRegisterPluginFactoryInstance(p) |
nothing calls this directly
no outgoing calls
no test coverage detected