00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSData.h>
00008
00009 @interface NSSubrangeData : NSData
00010 {
00011 unsigned int _reserved:3;
00012 unsigned int _retainCount:29;
00013 struct _NSRange _range;
00014 NSData *_data;
00015 }
00016
00017 - (unsigned int)length;
00018 - (const void *)bytes;
00019 - (id)copyWithZone:(struct _NSZone *)fp8;
00020 - (BOOL)_bytesAreVM;
00021 - (void)getBytes:(void *)fp8;
00022 - (void)getBytes:(void *)fp8 length:(unsigned int)fp12;
00023 - (void)getBytes:(void *)fp8 range:(struct _NSRange)fp12;
00024 - (id)init;
00025 - (id)initWithData:(id)fp8 range:(struct _NSRange)fp12;
00026 - (void)dealloc;
00027
00028 @end
00029