mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
6ff5b5c101
Things were getting rather cluttered with everything being qwaq-* and all in one directory. Now most have lost the qwaq- prefix and have been moved into subdirectories (non-recursive make).
20 lines
315 B
Objective-C
20 lines
315 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;
|
|
}
|
|
-initWithView:(View *) view;
|
|
-setView: (View *) view;
|
|
@end
|
|
|
|
@interface ProxyView (View) <View, TextContext>
|
|
@end
|
|
|
|
#endif//__qwaq_ui_proxyview_h
|