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
|
/*
SPDX-FileCopyrightText: 2012 Sven Brauch <svenbrauch@googlemail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PDBDEBUGGERPLUGIN_H
#define PDBDEBUGGERPLUGIN_H
#include <interfaces/iplugin.h>
#include "kdevpdb_export.h"
#include <QVariantList>
namespace Python {
class PdbDebuggerPlugin : public KDevelop::IPlugin
{
Q_OBJECT
public:
PdbDebuggerPlugin(QObject* parent, const KPluginMetaData& metaData, const QVariantList& = QVariantList());
~PdbDebuggerPlugin() override;
};
}
#endif // PDBDEBUGGERPLUGIN_H
|