mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
fe4bf28335
Not enough, but covers Object->NSObject and header file protection.
16 lines
242 B
Objective-C
16 lines
242 B
Objective-C
#ifndef PopScrollView_h
|
|
#define PopScrollView_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface PopScrollView : NSScrollView
|
|
{
|
|
id button1, button2;
|
|
}
|
|
|
|
- initWithFrame:(NSRect)frameRect button1: b1 button2: b2;
|
|
- tile;
|
|
|
|
@end
|
|
|
|
#endif//PopScrollView_h
|