4236b2e5c2
In libobjc/: 2011-06-03 Nicola Pero <nicola.pero@meta-innovation.com> * Object.m ([-forward::]): Removed. * objc/deprecated/Object.h ([-forward::]): Removed. * sendmsg.c (__objc_forward): Updated comments. From-SVN: r174607
64 lines
1.4 KiB
Objective-C
64 lines
1.4 KiB
Objective-C
/* The following methods were deprecated in GCC 4.6.0 and will be
|
|
removed in the next GCC release. */
|
|
@interface Object (Deprecated)
|
|
/* Initializing classes and instances */
|
|
+ initialize;
|
|
- init;
|
|
|
|
/* Creating, freeing, and copying instances */
|
|
+ new;
|
|
+ alloc;
|
|
- free;
|
|
- copy;
|
|
- shallowCopy;
|
|
- deepen;
|
|
- deepCopy;
|
|
|
|
/* Identifying classes */
|
|
- (Class)superClass;
|
|
- (MetaClass)metaClass;
|
|
- (const char *)name;
|
|
|
|
/* Identifying and comparing objects */
|
|
- self;
|
|
- (unsigned int)hash;
|
|
- (int)compare:(id)anotherObject;
|
|
|
|
/* Testing object type */
|
|
- (BOOL)isMetaClass;
|
|
- (BOOL)isClass;
|
|
- (BOOL)isInstance;
|
|
|
|
/* Testing inheritance relationships */
|
|
- (BOOL)isKindOf:(Class)aClassObject;
|
|
- (BOOL)isMemberOf:(Class)aClassObject;
|
|
- (BOOL)isKindOfClassNamed:(const char *)aClassName;
|
|
- (BOOL)isMemberOfClassNamed:(const char *)aClassName;
|
|
|
|
/* Testing class functionality */
|
|
+ (BOOL)instancesRespondTo:(SEL)aSel;
|
|
- (BOOL)respondsTo:(SEL)aSel;
|
|
|
|
/* Testing protocol conformance */
|
|
- (BOOL)conformsTo:(Protocol*)aProtocol;
|
|
|
|
/* Introspection */
|
|
+ (IMP)instanceMethodFor:(SEL)aSel;
|
|
- (IMP)methodFor:(SEL)aSel;
|
|
+ (struct objc_method_description *)descriptionForInstanceMethod:(SEL)aSel;
|
|
- (struct objc_method_description *)descriptionForMethod:(SEL)aSel;
|
|
|
|
/* Forwarding */
|
|
- (retval_t)performv:(SEL)aSel :(arglist_t)argFrame;
|
|
|
|
/* Posing */
|
|
+ poseAs:(Class)aClassObject;
|
|
- (Class)transmuteClassTo:(Class)aClassObject;
|
|
|
|
/* Archiving */
|
|
+ (int)version;
|
|
+ setVersion:(int)aVersion;
|
|
|
|
@end
|
|
|