/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

  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. #import <Foundation/Foundation.h>
  9. #import "FSKResponse.h"
  10. @class FSKPerson, FSKPersonSummary;
  11. @interface FSKPersonResponse : FSKResponse {
  12. NSArray *requestedIds;
  13. NSArray *persons; // of FSKPerson
  14. }
  15. - (id)initWithData:(NSData *)data;
  16. - (NSArray *)personList;
  17. - (FSKPerson *)person;
  18. - (FSKPersonSummary *)personSummary;
  19. @end