![]() |
IOS Streaming Browser 1.0
An IOS streaming browser to stream the display to others or to a projector
|
00001 #import <Foundation/Foundation.h> 00002 #import "HTTPResponse.h" 00003 00004 // Implements HTTPResponse protocol 00005 @interface HTTPDataResponse : NSObject <HTTPResponse> 00006 { 00007 00008 /** 00009 00010 **/ 00011 NSUInteger offset; 00012 00013 /** 00014 the data 00015 **/ 00016 NSData *data; 00017 } 00018 00019 /** 00020 Initializes the HTTPDataResponse with data 00021 param NSDAta 00022 returns id 00023 **/ 00024 - (id)initWithData:(NSData *)data; 00025 00026 @end