mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-25 13:51:36 +00:00
16 lines
354 B
C
16 lines
354 B
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
|