quakeforge/ruamoko/qwaq/debugger/localsdata.h
Bill Currie 0da92e33f6 [qwaq] Use TableView to show locals
This is much nicer (even though things aren't quite right yet)
2020-03-31 21:15:57 +09:00

22 lines
477 B
Objective-C

#ifndef __qwaq_debugger_localsview_h
#define __qwaq_debugger_localsview_h
#include <types.h>
#include "ui/tableview.h"
#include "debugger/debug.h"
@interface LocalsData : Object <TableViewDataSource>
{
qdb_target_t target;
qfot_type_encodings_t target_encodings;
unsigned current_fnum;
qdb_function_t *func;
qdb_auxfunction_t *aux_func;
qdb_def_t *defs;
void *data;
}
+(LocalsData *)withTarget:(qdb_target_t)target;
-setFunction:(unsigned)fnum;
@end
#endif