mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
18 lines
273 B
C
18 lines
273 B
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
|