/iPhoneSample/Frameworks/FSKit.framework/Versions/A/Headers/FSKContributor.h

http://fskit.googlecode.com/ · C++ Header · 42 lines · 25 code · 9 blank · 8 comment · 0 complexity · 6ae21e634f85cc1daeffd2968f88c35a MD5 · raw file

  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. #import <Foundation/Foundation.h>
  9. #import "enunciate_common.h"
  10. @interface FSKContributor : NSObject {
  11. NSString *contributorId;
  12. NSString *contactName;
  13. NSString *fullName;
  14. NSString *email;
  15. NSString *phone;
  16. // postalAddress
  17. NSString *address1;
  18. NSString *address2;
  19. NSString *address3;
  20. NSString *address4;
  21. NSString *street1;
  22. NSString *street2;
  23. NSString *street3;
  24. NSString *city;
  25. NSString *province;
  26. NSString *country;
  27. NSString *postalCode;
  28. NSMutableArray *aliases;
  29. }
  30. - (NSString *)contributorId;
  31. + (FSKContributor *)createFromXML:(id <EnunciateXML>)userElement;
  32. - (id)initWithXML:(id <EnunciateXML>)userElement;
  33. @end