mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
0d8815f274
The debugger displays the source file but doesn't highlight the current line yet.
26 lines
442 B
Objective-C
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
|