MCPcopy Create free account
hub / github.com/Sonic-DE/sonic-win / EffectLoader

Method EffectLoader

src/effect/effectloader.cpp:413–421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

411}
412
413EffectLoader::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
423EffectLoader::~EffectLoader()
424{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected