-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathXSABContact.h
More file actions
28 lines (22 loc) · 741 Bytes
/
Copy pathXSABContact.h
File metadata and controls
28 lines (22 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// XSABContact.h
// SkypeToAddressBook
//
// Created by Xavi Aracil on 19/08/10.
// Copyright 2010 xaracSoft (Xavi Aracil Diaz). All rights reserved.
//
#import <Cocoa/Cocoa.h>
#define kXSOldSkypeProperty @"com.xaracSoft.SkypeToAddressBook.skypeName"
#define kXSSkypeProperty @"com.xadSolutions.SkypeToAddressBook.skypeName"
@class ABPerson;
@interface XSABContact : NSObject {
NSString *uniqueId;
NSString *fullName;
NSString *skypeName;
}
@property (nonatomic, copy) NSString *uniqueId;
@property (nonatomic, copy) NSString *fullName;
@property (nonatomic, copy) NSString *skypeName;
-(id) initWithPerson:(ABPerson *)person skypeProperty:(NSString *)skypeProperty;
+(NSString *) fullNameForPerson:(ABPerson *) person;
@end