Abizern / bonsoir

A Cocoa / Objective-C application that uses the Bonjour service to share contact details between macs on the same network.

bonsoir / BonsoirAppDelegate.h
100644 16 lines (11 sloc) 0.417 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <Cocoa/Cocoa.h>
#import <AddressBook/AddressBook.h>
@class MainWindowController;
@class PreferencesWindowController;
 
extern NSString * const kBroadcastPersonId;
 
@interface BonsoirAppDelegate : NSObject <NSApplicationDelegate> {
    MainWindowController *windowController;
    PreferencesWindowController *preferencesController;
}
@property (nonatomic, assign) MainWindowController *windowController;
 
 
@end