quakeforge/ruamoko/qwaq/qwaq-proxyview.h
Bill Currie e893421dba [qwaq] Get context from owner instead of prev view
The previous view might be nil, which would result in the new view not
getting a context.
2020-03-26 14:46:48 +09:00

20 lines
308 B
Objective-C

#ifndef __qwaq_proxyview_h
#define __qwaq_proxyview_h
#include "qwaq-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_proxyview_h