first commit

This commit is contained in:
YANNIS
2025-05-23 00:57:27 +02:00
commit 7bae3bcc57
4 changed files with 93 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// Debugger.hpp
#pragma once
#include <string>
#include <sys/types.h>
class Debugger {
public:
Debugger(const std::string& prog_name);
void run();
private:
void run_target();
void run_debugger();
std::string program_name;
pid_t child_pid;
};