mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
fd0700f9ae
The idea is that the view can be switched out readily: the proxy simply passes all messages to its view object.
17 lines
273 B
Objective-C
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
|