MCPcopy Create free account
hub / github.com/KDE/kdevelop / launchModeForId

Method launchModeForId

kdevplatform/shell/runcontroller.cpp:866–876  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

864}
865
866KDevelop::ILaunchMode* KDevelop::RunController::launchModeForId(const QString& id) const
867{
868 Q_D(const RunController);
869
870 auto it = d->launchModes.find( id );
871 if( it != d->launchModes.end() )
872 {
873 return it.value();
874 }
875 return nullptr;
876}
877
878void KDevelop::RunController::addLaunchConfiguration(KDevelop::LaunchConfiguration* l)
879{

Callers 3

launchAsMethod · 0.80
createTestJobFunction · 0.80

Calls 3

findMethod · 0.45
endMethod · 0.45
valueMethod · 0.45

Tested by 1

createTestJobFunction · 0.64