| 231 | } |
| 232 | |
| 233 | void |
| 234 | Plugin::getPythonModuleNameAndPath(QString* moduleName, |
| 235 | QString* modulePath) const |
| 236 | { |
| 237 | int foundLastSlash = _pythonModule.lastIndexOf( QLatin1Char('/') ); |
| 238 | |
| 239 | if (foundLastSlash != -1) { |
| 240 | *modulePath = _pythonModule.mid(0, foundLastSlash + 1); |
| 241 | *moduleName = _pythonModule.mid(foundLastSlash + 1); |
| 242 | } else { |
| 243 | *moduleName = _pythonModule; |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | void |
| 248 | Plugin::setOfxPlugin(OFX::Host::ImageEffect::ImageEffectPlugin* p) |
no outgoing calls
no test coverage detected