quakeforge/ruamoko/qwaq/qwaq-debugger.h
Bill Currie 0d8815f274 [qwaq] Handle debug events at the app level
The debugger displays the source file but doesn't highlight the current
line yet.
2020-03-25 01:32:52 +09:00

26 lines
442 B
Objective-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;
}
-(qdb_target_t)debug_target;
-initWithTarget:(qdb_target_t) target;
-handleDebugEvent;
@end
#endif//__qwaq_debugger_h