| 411 | } |
| 412 | |
| 413 | EffectLoader::EffectLoader(QObject *parent) |
| 414 | : AbstractEffectLoader(parent) |
| 415 | { |
| 416 | m_loaders << new ScriptedEffectLoader(this) |
| 417 | << new PluginEffectLoader(this); |
| 418 | for (auto it = m_loaders.constBegin(); it != m_loaders.constEnd(); ++it) { |
| 419 | connect(*it, &AbstractEffectLoader::effectLoaded, this, &AbstractEffectLoader::effectLoaded); |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | EffectLoader::~EffectLoader() |
| 424 | { |
nothing calls this directly
no outgoing calls
no test coverage detected