/iPhoneSample/Frameworks/FSKit.framework/Versions/A/Headers/FSKContributor.h
C++ Header | 42 lines | 25 code | 9 blank | 8 comment | 0 complexity | 6ae21e634f85cc1daeffd2968f88c35a MD5 | raw file
Possible License(s): BSD-3-Clause
1// 2// FSKContributor.h 3// FSKit 4// 5// Created by Logan Allred on 8/16/08. 6// Copyright 2008 RedBugz Software. All rights reserved. 7// 8 9#import <Foundation/Foundation.h> 10#import "enunciate_common.h" 11 12@interface FSKContributor : NSObject { 13 NSString *contributorId; 14 NSString *contactName; 15 NSString *fullName; 16 NSString *email; 17 NSString *phone; 18 19 // postalAddress 20 NSString *address1; 21 NSString *address2; 22 NSString *address3; 23 NSString *address4; 24 NSString *street1; 25 NSString *street2; 26 NSString *street3; 27 NSString *city; 28 NSString *province; 29 NSString *country; 30 NSString *postalCode; 31 32 NSMutableArray *aliases; 33 34} 35 36- (NSString *)contributorId; 37 38 39+ (FSKContributor *)createFromXML:(id <EnunciateXML>)userElement; 40- (id)initWithXML:(id <EnunciateXML>)userElement; 41 42@end