00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSData;
00010
00011 @interface DataScanner : NSObject
00012 {
00013 NSData *myData;
00014 unsigned int myLocation;
00015 }
00016
00017 + (id)scannerWithData:(id)fp8;
00018 - (void)setData:(id)fp8;
00019 - (void)dealloc;
00020 - (id)data;
00021 - (unsigned int)scanLocation;
00022 - (void)setScanLocation:(unsigned int)fp8;
00023 - (BOOL)scanByte:(char *)fp8;
00024 - (BOOL)scanInt:(int *)fp8;
00025 - (BOOL)scanData:(id)fp8 intoData:(id *)fp12;
00026 - (BOOL)scanCString:(const char *)fp8 intoData:(id *)fp12;
00027 - (BOOL)scanBytesFromSet:(id)fp8 intoData:(id *)fp12;
00028 - (void)incrementLocation;
00029 - (BOOL)scanUpToData:(id)fp8 intoData:(id *)fp12;
00030 - (BOOL)scanUpToCString:(const char *)fp8 intoData:(id *)fp12;
00031 - (BOOL)scanUpToBytesFromSet:(id)fp8 intoData:(id *)fp12;
00032 - (BOOL)isAtEnd;
00033 - (BOOL)byteAtScanLocation;
00034 - (id)nextTokenWithPunctuation:(id)fp8;
00035 - (id)initWithData:(id)fp8;
00036
00037 @end
00038