h1-mod/src/runner/debugger.hpp
2022-02-03 11:05:24 -08:00

16 lines
234 B
C++

#pragma once
#include <thread>
class debugger
{
public:
debugger(unsigned long process_id, bool start);
~debugger();
private:
volatile bool terminate_ = false;
std::thread runner_;
void run(unsigned long process_id) const;
};