mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
12 lines
308 B
C
12 lines
308 B
C
|
#ifndef __qwaq_debugger_basicview_h
|
||
|
#define __qwaq_debugger_basicview_h
|
||
|
|
||
|
#include "debugger/defview.h"
|
||
|
|
||
|
@interface BasicView : DefView
|
||
|
// might return a NameView (which is also a DefView)
|
||
|
+(DefView *)withType:(qfot_type_t *)type at:(unsigned)offset in:(void *)data;
|
||
|
@end
|
||
|
|
||
|
#endif//__qwaq_debugger_basicview_h
|