00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #if !defined(DATAINSTREAM_OL_GUARD)
00044 #define DATAINSTREAM_OL_GUARD
00045
00046 #include <ObjectiveLib/ConnectedInStream.h>
00047
00048 #if !defined(OL_NO_OPENSTEP)
00049 @class NSData;
00050 #endif
00051
00062 @interface OLDataInStream : OLConnectedInStream
00063 {
00064 @protected
00068 uint8_t* bytes;
00069
00073 unsigned byteCount;
00074
00078 unsigned position;
00079 }
00080
00092 + (id) streamWithBytes: (const uint8_t*)buffer count: (unsigned)length;
00093
00094 #if !defined(OL_NO_OPENSTEP)
00095
00102 + (id) streamWithDataObject: (NSData*)data;
00103 #endif
00104
00108
00109 #if !defined(OL_NO_OPENSTEP)
00110
00116 - (id) initWithDataObject: (NSData*)data;
00117 #endif
00118
00126 - (id) initWithBytes: (const uint8_t*)buffer count: (unsigned)length;
00127
00128 #if !defined(OL_NO_OPENSTEP)
00129 - (void) dealloc;
00130 #endif
00131
00132
00133 #if defined(OL_NO_OPENSTEP)
00134 - (void) freeStreamResources;
00135 #endif
00136
00144 - (uint8_t) readByte;
00145
00156 - (unsigned) readBytes: (uint8_t*)buffer count: (unsigned)max;
00157
00158 @end
00159
00160 #endif