File: pdbdebuggerplugin.h

package info (click to toggle)
kdevelop-python 24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,640 kB
  • sloc: python: 183,048; cpp: 18,798; xml: 140; sh: 14; makefile: 9
file content (26 lines) | stat: -rw-r--r-- 542 bytes parent folder | download
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