00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #import <Foundation/Foundation.h>
00022
00023 @interface MKPatchEntry : NSObject
00024 {
00025 id entryClass;
00026 unsigned short type;
00027 unsigned short segment;
00028 unsigned length;
00029 }
00030
00031 - initWithClass: (id) entryClass type: (unsigned short) aType segment: (unsigned short) segment length: (unsigned) len;
00032 - initWithClass: (id) entryClass type: (unsigned short) aType segment: (unsigned short) segment;
00033 - initWithClass: (id) entryClass type: (unsigned short) aType;
00034 - (unsigned short) type;
00035 - (unsigned short) segment;
00036 - (unsigned) length;
00037 - entryClass;
00038 @end