public
Description: A Cocoa / Objective-C application that uses the Bonjour service to share contact details between macs on the same network.
Homepage:
Clone URL: git://github.com/Abizern/bonsoir.git
bonsoir / PreferenceController.h
100644 21 lines (15 sloc) 0.375 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// PreferenceController.h
// Bonsoir
//
// Created by R. Tyler Ballance on 8/26/06.
//
 
#import <Cocoa/Cocoa.h>
 
@class VCardController;
 
@interface PreferenceController : NSObject {
IBOutlet NSWindow *prefsWindow;
IBOutlet VCardController *vcardController;
}
 
- (void)launchPreferences:(NSNotification *)notification;
- (IBAction)launchPrefsWindow:(id)sender;
 
@end