quakeforge/ruamoko/qwaq/ui/proxyview.h
Bill Currie 6ff5b5c101 [qwaq] Clean up the qwaq directory
Things were getting rather cluttered with everything being qwaq-* and
all in one directory. Now most have lost the qwaq- prefix and have been
moved into subdirectories (non-recursive make).
2020-03-30 02:34:08 +09:00

20 lines
315 B
Objective-C

#ifndef __qwaq_ui_proxyview_h
#define __qwaq_ui_proxyview_h
#include "ui/view.h"
@class Group;
@interface ProxyView : Object
{
View *view;
Group *owner;
}
-initWithView:(View *) view;
-setView: (View *) view;
@end
@interface ProxyView (View) <View, TextContext>
@end
#endif//__qwaq_ui_proxyview_h