]> git.ipfire.org Git - thirdparty/gcc.git/blob - libobjc/objc/deprecated/Protocol.h
In libobjc/: 2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
[thirdparty/gcc.git] / libobjc / objc / deprecated / Protocol.h
1 /* The following methods were deprecated in GCC 4.6.0 and will be
2 removed in the next GCC release. */
3 @interface Protocol (Deprecated)
4 /* Obtaining attributes intrinsic to the protocol */
5 - (const char *)name;
6
7 /* Testing protocol conformance */
8 - (BOOL) conformsTo: (Protocol *)aProtocolObject;
9
10 /* Looking up information specific to a protocol */
11 - (struct objc_method_description *) descriptionForInstanceMethod:(SEL)aSel;
12 - (struct objc_method_description *) descriptionForClassMethod:(SEL)aSel;
13 @end