Modified to say we conform to the NSCoding protocol (whith the spec says we

should).


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2836 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-07-15 12:42:26 +00:00
parent 8f958fedf2
commit de0257d883

View file

@ -28,7 +28,7 @@
@class NSData;
@interface NSCharacterSet : NSObject <NSCopying, NSMutableCopying>
@interface NSCharacterSet : NSObject <NSCoding, NSCopying, NSMutableCopying>
// Creating standard character sets
+ (NSCharacterSet *)alphanumericCharacterSet;
@ -54,7 +54,7 @@
@end
@interface NSMutableCharacterSet : NSCharacterSet <NSCopying, NSMutableCopying>
@interface NSMutableCharacterSet : NSCharacterSet
- (void)addCharactersInRange:(NSRange)aRange;
- (void)addCharactersInString:(NSString *)aString;