/FSKit/Source/Common/FSKPersonDetail.h

http://fskit.googlecode.com/ · C Header · 26 lines · 15 code · 4 blank · 7 comment · 0 complexity · 1019207c4a6be38de3f25e9653cd1c0c MD5 · raw file

  1. //
  2. // FSKPersonDetail.h
  3. // FSKit
  4. //
  5. // Created by Logan Allred on 8/4/08.
  6. // Copyright 2008 RedBugz Software. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "enunciate_common.h"
  10. @interface FSKPersonDetail : NSObject {
  11. NSArray *nameAssertions; // of FSKAssertion
  12. NSArray *genderAssertions; // of FSKAssertion
  13. NSArray *eventAssertions; // of FSKAssertion
  14. NSArray *characteristicAssertions; // of FSKAssertion
  15. NSArray *ordinanceAssertions; // of FSKAssertion
  16. NSArray *spouses; // of FSKPerson
  17. NSArray *children; // of FSKPerson
  18. NSArray *families; // of FSKFamily
  19. }
  20. + (FSKPersonDetail *)createFromXML:(id <EnunciateXML>)personElement;
  21. - (id)initWithXML:(id <EnunciateXML>)personElement;
  22. @end