quakeforge/ruamoko/qwaq/ui/proxyview.h
Bill Currie 8a7fbdfc9f [qwaq] Rework allocation to use retain/release
It currently dies when single stepping or exiting due to EditBuffer's
retain count not getting incremented when initialized. This is because
EditBuffer is initialized in C and thus does not call Object's -init.
2020-03-30 16:58:36 +09:00

21 lines
349 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;
}
+(ProxyView *)withView:(View *)view;
-initWithView:(View *)view;
-setView:(View *)view;
@end
@interface ProxyView (View) <View, TextContext>
@end
#endif//__qwaq_ui_proxyview_h