obj-c
C++
code posted
created at 11 Sep 20:02, updated at 11 Sep 20:02
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
#ifndef _mySTEP_H_NSObject #define _mySTEP_H_NSObject // import everything we need from the basic runtime system (incl. POSIX headers) #import <Foundation/NSObjCRuntime.h> #import <Foundation/NSZone.h> @protocol NSObject - (id) autorelease; - (Class) class; - (BOOL) conformsToProtocol:(Protocol *) aProtocol; - (NSString *) description; - (NSUInteger) hash; - (BOOL) isEqual:(id) anObject; - (BOOL) isKindOfClass:(Class) aClass; - (BOOL) isMemberOfClass:(Class) aClass; - (BOOL) isProxy; - (id) performSelector:(SEL) aSelector; - (id) performSelector:(SEL) aSelector withObject:(id) anObject; - (id) performSelector:(SEL) aSelector withObject:(id) object1 withObject:(id) object2; - (oneway void) release; - (BOOL) respondsToSelector:(SEL) aSelector; - (id) retain; - (NSUInteger) retainCount; - (id) self; - (Class) superclass; - (NSZone *) zone; - (id) _nimp:(SEL) cmd; @end @protocol NSCopying - (id) copyWithZone:(NSZone *) zone; @end |
986 Bytes in 3 ms with coderay