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 1998-07-15 12:42:26 +00:00
parent 2d45d3f4f3
commit cb92595ddb

View file

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