/iPhoneSample/externals/fskit/Common/FSKPersonResponse.h
http://fskit.googlecode.com/ · C++ Header · 25 lines · 12 code · 6 blank · 7 comment · 0 complexity · 175ab7b08c3003fc9f16cf40457123dc MD5 · raw file
- //
- // FSKPersonResponse.h
- // FSKit
- //
- // Created by Logan Allred on 3/10/08.
- // Copyright 2008 RedBugz Software. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FSKResponse.h"
- @class FSKPerson, FSKPersonSummary;
- @interface FSKPersonResponse : FSKResponse {
- NSArray *requestedIds;
- NSArray *persons; // of FSKPerson
- }
- - (id)initWithData:(NSData *)data;
- - (NSArray *)personList;
- - (FSKPerson *)person;
- - (FSKPersonSummary *)personSummary;
- @end