• K's avatar
    init · 02421f32
    K authored
    02421f32
BonjourServerAppDelegate.h 344 Bytes
#import <Cocoa/Cocoa.h>

@class GCDAsyncSocket;


@interface BonjourServerAppDelegate : NSObject <NSApplicationDelegate, NSNetServiceDelegate>
{
	NSNetService *netService;
	GCDAsyncSocket *asyncSocket;
	NSMutableArray *connectedSockets;
	
	NSWindow *__unsafe_unretained window;
}

@property (unsafe_unretained) IBOutlet NSWindow *window;

@end