aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/dap/pydapengine.h
blob: d357117b7f837bfb75668ea5f2c6f1af569feac9 (plain)
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
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "dapengine.h"

namespace Debugger::Internal {

class PyDapEngine : public DapEngine
{
public:
    PyDapEngine();

private:
    void handleDapInitialize() override;
    void quitDebugger() override;

    void setupEngine() override;

    bool acceptsBreakpoint(const BreakpointParameters &bp) const override;

    const QLoggingCategory &logCategory() override;

    std::unique_ptr<Utils::Process> m_installProcess;
};

} // Debugger::Internal