diff options
Diffstat (limited to 'libobjc/objc/deprecated/Object.h')
-rw-r--r-- | libobjc/objc/deprecated/Object.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libobjc/objc/deprecated/Object.h b/libobjc/objc/deprecated/Object.h new file mode 100644 index 0000000..0241f0f --- /dev/null +++ b/libobjc/objc/deprecated/Object.h @@ -0,0 +1,13 @@ +@interface Object (Deprecated) + +/* The following methods were deprecated in GCC 4.6.0 and will be + removed in the next GCC release. +*/ ++ (int)streamVersion: (TypedStream*)aStream; /* __attribute__ ((deprecated)) */ + +- read: (TypedStream*)aStream; /* __attribute__ ((deprecated)) */ +- write: (TypedStream*)aStream; /* __attribute__ ((deprecated)) */ +- awake; /* __attribute__ ((deprecated)) */ + +@end + |