/iPhoneSample/externals/fskit/Common/FSKPersonResponse.h
C++ Header | 25 lines | 12 code | 6 blank | 7 comment | 0 complexity | 175ab7b08c3003fc9f16cf40457123dc MD5 | raw file
Possible License(s): BSD-3-Clause
1// 2// FSKPersonResponse.h 3// FSKit 4// 5// Created by Logan Allred on 3/10/08. 6// Copyright 2008 RedBugz Software. All rights reserved. 7// 8 9#import <Foundation/Foundation.h> 10#import "FSKResponse.h" 11 12@class FSKPerson, FSKPersonSummary; 13 14@interface FSKPersonResponse : FSKResponse { 15 NSArray *requestedIds; 16 NSArray *persons; // of FSKPerson 17} 18 19- (id)initWithData:(NSData *)data; 20 21- (NSArray *)personList; 22- (FSKPerson *)person; 23- (FSKPersonSummary *)personSummary; 24 25@end