Temporarily comment out NSCoder methods.

Fix typo in category.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@91 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-03-12 19:34:43 +00:00
parent e851c39eb1
commit 048b4d367e

View file

@ -66,8 +66,8 @@
@end
@protocol NSCoding
- (void)encodeWithCoder:(NSCoder *)aCoder;
- initWithCoder:(NSCoder *)aDecoder;
//- (void)encodeWithCoder:(NSCoder *)aCoder; /* xxx Fix this! */
//- initWithCoder:(NSCoder *)aDecoder;
@end
@ -126,9 +126,16 @@ NSComparisonResult;
enum {NSNotFound = 0x7fffffff};
@interface Object (NEXTSTEP)
@interface NSObject (NEXTSTEP)
- error:(const char *)aString, ...;
- notImplemented:(SEL)aSel;
- (const char *) name;
@end
@interface NSObject (GNU)
- (Class)transmuteClassTo:(Class)aClassObject;
- subclassResponsibility:(SEL)aSel;
- shouldNotImplement:(SEL)aSel;
@end
#endif /* __NSObject_h_OBJECTS_INCLUDE */