quakeforge/ruamoko/qwaq/qwaq-proxyview.h
Bill Currie fd0700f9ae [qwaq] Add a proxy view class
The idea is that the view can be switched out readily: the proxy simply
passes all messages to its view object.
2020-03-24 21:02:54 +09:00

17 lines
273 B
Objective-C

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