| 13 | class JavaDebugger; |
| 14 | class PythonDebugger; |
| 15 | class DebugEngine : public QObject |
| 16 | { |
| 17 | Q_OBJECT |
| 18 | public: |
| 19 | explicit DebugEngine(QObject *parent = nullptr); |
| 20 | |
| 21 | bool start(); |
| 22 | void stop(); |
| 23 | bool exit(); |
| 24 | |
| 25 | signals: |
| 26 | |
| 27 | public slots: |
| 28 | private: |
| 29 | bool initialize(); |
| 30 | void listeningIdeAlive(); |
| 31 | |
| 32 | bool isRunning = false; |
| 33 | |
| 34 | QSharedPointer<DapSession> dapSession; |
| 35 | QSharedPointer<JavaDebugger> javaDebugger; |
| 36 | QSharedPointer<PythonDebugger> pythonDebugger; |
| 37 | QTimer checkIdeAliveTimer; |
| 38 | }; |
| 39 | |
| 40 | #endif // DEBUGENGINE_H |
nothing calls this directly
no test coverage detected