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 / BonsoirServer.h
100644 22 lines (17 sloc) 0.339 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// BonsoirServer.h
// Bonsoir
//
// Created by R. Tyler Ballance on 8/26/06.
//
 
#import <Cocoa/Cocoa.h>
 
@interface BonsoirServer : NSObject <BonsoirServerProtocol> {
id delegateObject;
NSSocketPort *socket;
NSNetService *service;
NSConnection *theConnection;
}
 
- (NSData *)vCard;
- (NSData *)image;
- (NSString *)name;
 
@end