/iPhoneSample/Frameworks/FSKit.framework/Versions/A/Headers/FSKUserResponse.h

http://fskit.googlecode.com/ · C++ Header · 21 lines · 9 code · 5 blank · 7 comment · 0 complexity · 09c00469396d9c98aa067d611aa35575 MD5 · raw file

  1. //
  2. // FSKUserResponse.h
  3. // FSKit
  4. //
  5. // Created by Logan Allred on 8/24/08.
  6. // Copyright 2008 RedBugz Software. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FSKResponse.h"
  10. @interface FSKUserResponse : FSKResponse {
  11. NSArray *requestedIds; // of NSString
  12. NSArray *users; // of FSKUser
  13. }
  14. - (id)initWithData:(NSData *)data;
  15. - (NSArray *)userList;
  16. @end