IOS Streaming Browser 1.0
An IOS streaming browser to stream the display to others or to a projector

HTTPRedirectResponse Class Reference

#import <HTTPRedirectResponse.h>

Inheritance diagram for HTTPRedirectResponse:
Collaboration diagram for HTTPRedirectResponse:

Public Member Functions

(id) - initWithPath:

Protected Attributes

NSString * redirectPath

Detailed Description

Definition at line 6 of file HTTPRedirectResponse.h.


Member Function Documentation

- (id) initWithPath: (NSString *)  redirectPath

Initialize the HTTPRedirectResponse with a redirectPath param NSString returns id

Definition at line 5 of file HTTPRedirectResponse.m.

                  :(NSString *)path
{
        if ((self = [super init]))
        {
                // Copies the path
                redirectPath = [path copy];
        }
        return self;
}


Field Documentation

- (NSString*) redirectPath [protected]

The redirect path

Definition at line 12 of file HTTPRedirectResponse.h.


The documentation for this class was generated from the following files:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Properties Defines