00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSData, NSString;
00010
00011 @interface MappedData : NSObject
00012 {
00013 NSData *_mappedData;
00014 NSString *_storagePath;
00015 }
00016
00017 - (id)init;
00018 - (void)dealloc;
00019 - (BOOL)flushToDisk;
00020 - (void)setData:(id)fp8;
00021 - (void)appendBytesToDisk:(const void *)fp8 length:(unsigned int)fp12;
00022 - (void)refreshFromDisk;
00023 - (void)appendData:(id)fp8;
00024 - (void)appendBytes:(const void *)fp8 length:(unsigned int)fp12;
00025 - (unsigned int)length;
00026 - (void)convertToMutable;
00027 - (void)convertNetworkLineEndingsToUnix;
00028 - (id)data;
00029
00030 @end
00031