mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
53b553e892
Needed for structured types (arrays, structs, etc). The multiple rows aren't implemented yet, but the initial groundwork is done.
13 lines
293 B
Objective-C
13 lines
293 B
Objective-C
#ifndef __qwaq_debugger_uintview_h
|
|
#define __qwaq_debugger_uintview_h
|
|
|
|
#include "ruamoko/qwaq/debugger/views/defview.h"
|
|
|
|
@interface UIntView : DefView
|
|
{
|
|
unsigned *data;
|
|
}
|
|
+(UIntView *)withDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_uintview_h
|