mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-12-02 09:02:32 +00:00
14 lines
250 B
C
14 lines
250 B
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
|