mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
26 lines
413 B
C
26 lines
413 B
C
|
#ifndef __qwaq_debugger_h
|
||
|
#define __qwaq_debugger_h
|
||
|
|
||
|
#include <Object.h>
|
||
|
|
||
|
#include "qwaq-debug.h"
|
||
|
|
||
|
@class ProxyView;
|
||
|
@class Editor;
|
||
|
@class Window;
|
||
|
@class Array;
|
||
|
|
||
|
@interface Debugger : Object
|
||
|
{
|
||
|
Window *source_window;
|
||
|
ProxyView *file_proxy;
|
||
|
Array *files;
|
||
|
Editor *current_file;
|
||
|
qdb_target_t debug_target;
|
||
|
}
|
||
|
-initWithTarget:(qdb_target_t) target;
|
||
|
-handleDebugEvent;
|
||
|
@end
|
||
|
|
||
|
#endif//__qwaq_debugger_h
|