| 33 | |
| 34 | using namespace dap; |
| 35 | DebugSession::DebugSession(DebugModel *_model, QObject *parent) |
| 36 | : QObject(parent), |
| 37 | id(QUuid::createUuid().toString().toStdString()), |
| 38 | model(_model) |
| 39 | { |
| 40 | dap::initialize(); |
| 41 | } |
| 42 | |
| 43 | DebugSession::~DebugSession() |
| 44 | { |
nothing calls this directly
no test coverage detected