2020-03-30 04:42:31 +00:00
|
|
|
#ifndef __qwaq_debugger_localsview_h
|
|
|
|
#define __qwaq_debugger_localsview_h
|
|
|
|
|
|
|
|
#include <types.h>
|
2020-06-21 14:15:17 +00:00
|
|
|
#include "ruamoko/qwaq/ui/tableview.h"
|
|
|
|
#include "ruamoko/qwaq/debugger/debug.h"
|
2020-03-30 04:42:31 +00:00
|
|
|
|
2020-03-31 11:48:38 +00:00
|
|
|
@interface LocalsData : Object <TableViewDataSource>
|
2020-03-30 04:42:31 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2020-03-31 11:48:38 +00:00
|
|
|
+(LocalsData *)withTarget:(qdb_target_t)target;
|
2020-03-30 07:30:58 +00:00
|
|
|
-setFunction:(unsigned)fnum;
|
2020-03-31 14:23:18 +00:00
|
|
|
-fetchData;
|
2020-03-30 04:42:31 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|