00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSCoder.h>
00008
00009 @interface NSArchiver : NSCoder
00010 {
00011 void *mdata;
00012 void *pointerTable;
00013 void *stringTable;
00014 void *ids;
00015 void *map;
00016 void *replacementTable;
00017 void *reserved;
00018 }
00019
00020 + (void)encodeClassName:(id)fp8 intoClassName:(id)fp12;
00021 + (id)classNameEncodedForTrueClassName:(id)fp8;
00022 + (id)archivedDataWithRootObject:(id)fp8;
00023 + (BOOL)archiveRootObject:(id)fp8 toFile:(id)fp12;
00024 - (id)initForWritingWithMutableData:(id)fp8;
00025 - (id)archiverData;
00026 - (id)data;
00027 - (void)dealloc;
00028 - (void)finalize;
00029 - (void)replaceObject:(id)fp8 withObject:(id)fp12;
00030 - (int)versionForClassName:(id)fp8;
00031 - (void)encodeValueOfObjCType:(const char *)fp8 at:(const void *)fp12;
00032 - (void)encodeValuesOfObjCTypes:(const char *)fp8;
00033 - (void)encodeArrayOfObjCType:(const char *)fp8 count:(unsigned int)fp12 at:(const void *)fp16;
00034 - (void)encodeBytes:(const void *)fp8 length:(unsigned int)fp12;
00035 - (void)encodeObject:(id)fp8;
00036 - (void)encodeDataObject:(id)fp8;
00037 - (void)encodePropertyList:(id)fp8;
00038 - (void)encodeRootObject:(id)fp8;
00039 - (void)encodeConditionalObject:(id)fp8;
00040 - (void)encodeClassName:(id)fp8 intoClassName:(id)fp12;
00041 - (id)classNameEncodedForTrueClassName:(id)fp8;
00042
00043 @end
00044