mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
0a60f46a64
Structs and arrays now work (though could be better, eg collapsible).
15 lines
354 B
Objective-C
15 lines
354 B
Objective-C
#ifndef __qwaq_debugger_structview_h
|
|
#define __qwaq_debugger_structview_h
|
|
|
|
#include "ruamoko/qwaq/debugger/views/defview.h"
|
|
|
|
@interface StructView : DefView
|
|
{
|
|
unsigned *data;
|
|
DefView **field_views;
|
|
int *field_rows;
|
|
}
|
|
+(StructView *)withDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_structview_h
|