9 lines
252 B
C
9 lines
252 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface GBWarningPopover : NSPopover
|
||
|
|
||
|
+ (GBWarningPopover *) popoverWithContents:(NSString *)contents onView:(NSView *)view;
|
||
|
+ (GBWarningPopover *) popoverWithContents:(NSString *)contents onWindow:(NSWindow *)window;
|
||
|
|
||
|
@end
|