/iPhoneSample/externals/fskit/Common/FSKPersonSearchRequest.h

http://fskit.googlecode.com/ · C++ Header · 30 lines · 15 code · 8 blank · 7 comment · 0 complexity · e53257cbd3b603ac7364d63fe3767679 MD5 · raw file

  1. //
  2. // FSKPersonSearchRequest.h
  3. // FSKit
  4. //
  5. // Created by Logan Allred on 3/12/08.
  6. // Copyright 2008 RedBugz Software. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FSKRequest.h"
  10. #import "FSKSearchResponse.h"
  11. @interface FSKPersonSearchRequest : FSKRequest {
  12. }
  13. - (id)initWithFamilySearchConnection:(FSKConnection *)aFamilySearchConnection
  14. delegate:(id)aDelegate
  15. selector:(SEL)aSelector;
  16. + (void)fetchSearchResultsWithCriteria:(NSDictionary *)parameters
  17. connection:aFamilySearchConnection
  18. delegate:(id)aDelegate
  19. selector:(SEL)aSelector;
  20. - (void)sendSearchRequestWithCriteria:(NSDictionary *)parameters;
  21. - (FSKSearchResponse *)responseWithData:(NSData *)data;
  22. @end