File indexing completed on 2024-05-05 16:41:33

0001 /*
0002     SPDX-FileCopyrightText: 2012 Sven Brauch <svenbrauch@googlemail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef PDBDEBUGGERPLUGIN_H
0008 #define PDBDEBUGGERPLUGIN_H
0009 
0010 #include <interfaces/iplugin.h>
0011 #include "kdevpdb_export.h"
0012 #include <QVariantList>
0013 
0014 namespace Python {
0015 
0016 class PdbDebuggerPlugin : public KDevelop::IPlugin
0017 {
0018 Q_OBJECT
0019 public:
0020     PdbDebuggerPlugin(QObject* parent, const QVariantList& = QVariantList());
0021     ~PdbDebuggerPlugin() override;
0022 };
0023 
0024 }
0025 
0026 #endif // PDBDEBUGGERPLUGIN_H