mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
53b553e892
Needed for structured types (arrays, structs, etc). The multiple rows aren't implemented yet, but the initial groundwork is done.
27 lines
579 B
Objective-C
27 lines
579 B
Objective-C
#ifndef __qwaq_debugger_localsview_h
|
|
#define __qwaq_debugger_localsview_h
|
|
|
|
#include <types.h>
|
|
#include "ruamoko/qwaq/ui/tableview.h"
|
|
#include "ruamoko/qwaq/debugger/debug.h"
|
|
|
|
@class DefView;
|
|
|
|
@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;
|
|
DefView **def_views;
|
|
int *def_rows;
|
|
void *data;
|
|
}
|
|
+(LocalsData *)withTarget:(qdb_target_t)target;
|
|
-setFunction:(unsigned)fnum;
|
|
-fetchData;
|
|
@end
|
|
|
|
#endif
|