Removed stuff saying we conform to the NSCoding and NSCopying protocols (we

shouldn't) and removed the ([-copyWithZone:]) and ([-mutableCopyWithZone:])
methods - which shouldn't be there.


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

View file

@ -61,13 +61,11 @@
@end
@protocol NSCopying
- copyWithZone: (NSZone *)zone;
- copy;
- (id) copyWithZone: (NSZone *)zone;
@end
@protocol NSMutableCopying
- mutableCopyWithZone:(NSZone *)zone;
- mutableCopy;
- (id) mutableCopyWithZone: (NSZone *)zone;
@end
@protocol NSCoding
@ -76,7 +74,7 @@
@end
@interface NSObject <NSObject, NSCoding, NSCopying>
@interface NSObject <NSObject>
{
Class isa;
}