@brief The create instance function, the plugin must return an object derived from the \ref ImageEffect class */
| 320 | |
| 321 | /** @brief The create instance function, the plugin must return an object derived from the \ref ImageEffect class */ |
| 322 | ImageEffect* |
| 323 | TimeOffsetPluginFactory::createInstance(OfxImageEffectHandle handle, |
| 324 | ContextEnum /*context*/) |
| 325 | { |
| 326 | return new TimeOffsetPlugin(handle); |
| 327 | } |
| 328 | |
| 329 | static TimeOffsetPluginFactory p(kPluginIdentifier, kPluginVersionMajor, kPluginVersionMinor); |
| 330 | mRegisterPluginFactoryInstance(p) |
nothing calls this directly
no outgoing calls
no test coverage detected