~ubuntu-branches/ubuntu/trusty/gnustep-base/trusty

« back to all changes in this revision

Viewing changes to Headers/Foundation/NSProxy.h

Tags: upstream-1.20.0
ImportĀ upstreamĀ versionĀ 1.20.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
@interface NSProxy <NSObject>
36
36
{
37
37
@public
38
 
    Class               isa;
 
38
    Class       isa;
39
39
@private
40
 
    unsigned int        _retain_count;
 
40
    NSUInteger  _retain_count;
41
41
}
42
42
 
43
43
+ (id) alloc;
55
55
+ (void) release;
56
56
+ (BOOL) respondsToSelector: (SEL)aSelector;
57
57
+ (id) retain;
58
 
+ (unsigned int) retainCount;
 
58
+ (NSUInteger) retainCount;
59
59
 
60
60
- (id) autorelease;
61
61
- (Class) class;
63
63
- (void) dealloc;
64
64
- (NSString*) description;
65
65
- (void) forwardInvocation: (NSInvocation*)anInvocation;
66
 
- (unsigned int) hash;
 
66
- (NSUInteger) hash;
67
67
- (id) init;
68
68
- (BOOL) isEqual: (id)anObject;
69
69
- (BOOL) isKindOfClass: (Class)aClass;
73
73
- (void) release;
74
74
- (BOOL) respondsToSelector: (SEL)aSelector;
75
75
- (id) retain;
76
 
- (unsigned int) retainCount;
 
76
- (NSUInteger) retainCount;
77
77
- (id) self;
78
78
- (Class) superclass;
79
79
- (NSZone*) zone;