00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCopyingProtocol.h"
00010 #import "NSMutableCopyingProtocol.h"
00011
00012 @interface ByteSet : NSObject <NSCopying, NSMutableCopying>
00013 {
00014 char mySet;
00015 }
00016
00017 + (id)asciiWhitespaceSet;
00018 + (id)ASCIIByteSet;
00019 + (id)nonASCIIByteSet;
00020 + (id)suspiciousCodepage1252ByteSet;
00021 - (BOOL)byteIsMember:(BOOL)fp8;
00022 - (id)invertedSet;
00023 - (id)initWithRange:(struct _NSRange)fp8;
00024 - (id)initWithCString:(const char *)fp8;
00025 - (id)initWithBytes:(const void *)fp8 length:(unsigned int)fp12;
00026 - (id)_initWithSet:(const char *)fp8;
00027 - (id)copyWithZone:(struct _NSZone *)fp8;
00028 - (id)mutableCopyWithZone:(struct _NSZone *)fp8;
00029
00030 @end
00031