| 41 | } |
| 42 | |
| 43 | LaunchConfiguration::LaunchConfiguration(const KConfigGroup& grp, IProject* project, QObject* parent ) |
| 44 | : QObject(parent) |
| 45 | , ILaunchConfiguration() |
| 46 | , d_ptr(new LaunchConfigurationPrivate(grp, project)) |
| 47 | { |
| 48 | Q_D(LaunchConfiguration); |
| 49 | |
| 50 | d->type = Core::self()->runControllerInternal()->launchConfigurationTypeForId(grp.readEntry(LaunchConfigurationTypeEntry(), QString())); |
| 51 | } |
| 52 | |
| 53 | LaunchConfiguration::~LaunchConfiguration() |
| 54 | { |
nothing calls this directly
no test coverage detected