HTTPRedirectResponse.h 200 B

12345678910111213
  1. #import <Foundation/Foundation.h>
  2. #import "HTTPResponse.h"
  3. @interface HTTPRedirectResponse : NSObject <HTTPResponse>
  4. {
  5. NSString *redirectPath;
  6. }
  7. - (id)initWithPath:(NSString *)redirectPath;
  8. @end