/iPhoneSample/externals/fskit/Common/FSKPersonDetail.h
C++ Header | 26 lines | 15 code | 4 blank | 7 comment | 0 complexity | 1019207c4a6be38de3f25e9653cd1c0c MD5 | raw file
Possible License(s): BSD-3-Clause
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 9#import <Foundation/Foundation.h> 10#import "enunciate_common.h" 11 12@interface FSKPersonDetail : NSObject { 13 NSArray *nameAssertions; // of FSKAssertion 14 NSArray *genderAssertions; // of FSKAssertion 15 NSArray *eventAssertions; // of FSKAssertion 16 NSArray *characteristicAssertions; // of FSKAssertion 17 NSArray *ordinanceAssertions; // of FSKAssertion 18 NSArray *spouses; // of FSKPerson 19 NSArray *children; // of FSKPerson 20 NSArray *families; // of FSKFamily 21} 22 23+ (FSKPersonDetail *)createFromXML:(id <EnunciateXML>)personElement; 24- (id)initWithXML:(id <EnunciateXML>)personElement; 25 26@end