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

HTTPDataResponse Class Reference

#import <HTTPDataResponse.h>

Inheritance diagram for HTTPDataResponse:
Collaboration diagram for HTTPDataResponse:

Public Member Functions

(id) - initWithData:

Protected Attributes

NSUInteger offset
NSDatadata

Detailed Description

Definition at line 5 of file HTTPDataResponse.h.


Member Function Documentation

- (id) initWithData: (NSData *)  dataParam

Initializes the HTTPDataResponse with data param NSDAta returns id

Initializes the HTTPDataResponse with data param NSData returns id

Definition at line 13 of file HTTPDataResponse.m.

                  :(NSData *)dataParam
{
    
        if((self = [super init]))
        {
                
                offset = 0;  // Set offset to data as zero
                data = [dataParam retain];
        }
        return self;
}

Field Documentation

- (NSData*) data [protected]

the data

Definition at line 17 of file HTTPDataResponse.h.

- (UInt64) offset [protected]

Returns the offset to the data returns UInt64

Definition at line 12 of file HTTPDataResponse.h.


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