quakeforge/ruamoko/qwaq/device/nameview.h
Bill Currie 0a60f46a64 [qwaq] Implement more debugger def views
Structs and arrays now work (though could be better, eg collapsible).
2021-09-25 01:42:36 +09:00

13 lines
250 B
Objective-C

#ifndef __qwaq_debugger_nameview_h
#define __qwaq_debugger_nameview_h
#include "ruamoko/qwaq/debugger/views/defview.h"
@interface NameView : DefView
{
string name;
}
+(NameView *)withName:(string)name;
@end
#endif//__qwaq_debugger_nameview_h