mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-04 04:05:31 +00:00
23 lines
292 B
C
23 lines
292 B
C
|
#ifndef __DEBUGGER_H
|
||
|
#define __DEBUGGER_H
|
||
|
|
||
|
#include <pthread.h>
|
||
|
|
||
|
class Debugger {
|
||
|
public:
|
||
|
Debugger();
|
||
|
~Debugger();
|
||
|
|
||
|
void setSocket(int cliSock);
|
||
|
void step();
|
||
|
|
||
|
// private:
|
||
|
int sd; // server (listener)
|
||
|
int cd; // client (connected to us)
|
||
|
pthread_t listenThreadID;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|