1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
SPDX-FileCopyrightText: 2012 Sven Brauch <svenbrauch@googlemail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PDBLAUNCHER_H
#define PDBLAUNCHER_H
#include <interfaces/ilauncher.h>
namespace Python {
class PdbLauncher : public KDevelop::ILauncher
{
public:
PdbLauncher();
QList< KDevelop::LaunchConfigurationPageFactory* > configPages() const override;
QString description() const override;
QString id() override;
QString name() const override;
KJob* start(const QString& launchMode, KDevelop::ILaunchConfiguration* cfg) override;
QStringList supportedModes() const override;
};
}
#endif // PDBLAUNCHER_H
|