mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
29 lines
636 B
Objective-C
29 lines
636 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;
|
|
@class ListenerGroup;
|
|
|
|
@interface LocalsData : Object <TableViewDataSource>
|
|
{
|
|
ListenerGroup *onRowCountChanged;
|
|
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
|