forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDOCMethod.h
35 lines (23 loc) · 995 Bytes
/
CDOCMethod.h
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
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2011 Steve Nygard.
#import <Foundation/Foundation.h>
@class CDSymbolReferences, CDTypeController;
@interface CDOCMethod : NSObject <NSCopying>
{
NSString *name;
NSString *type;
NSUInteger imp;
BOOL hasParsedType;
NSArray *parsedMethodTypes;
}
- (id)initWithName:(NSString *)aName type:(NSString *)aType imp:(NSUInteger)anImp;
- (id)initWithName:(NSString *)aName type:(NSString *)aType;
- (NSString *)description;
@property (readonly) NSString *name;
@property (readonly) NSString *type;
@property (assign) NSUInteger imp;
- (NSArray *)parsedMethodTypes;
- (void)appendToString:(NSMutableString *)resultString typeController:(CDTypeController *)typeController symbolReferences:(CDSymbolReferences *)symbolReferences;
- (NSComparisonResult)ascendingCompareByName:(CDOCMethod *)otherMethod;
@end