forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDOCClass.h
More file actions
29 lines (21 loc) · 983 Bytes
/
CDOCClass.h
File metadata and controls
29 lines (21 loc) · 983 Bytes
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
// 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-2006 Steve Nygard
#import "CDOCProtocol.h"
#import "CDTopologicalSortProtocol.h"
@interface CDOCClass : CDOCProtocol <CDTopologicalSort>
{
NSString *superClassName;
NSArray *ivars;
}
- (void)dealloc;
- (NSString *)superClassName;
- (void)setSuperClassName:(NSString *)newSuperClassName;
- (NSArray *)ivars;
- (void)setIvars:(NSArray *)newIvars;
- (void)addToXMLElement:(NSXMLElement *)xmlElement classDump:(CDClassDump *)aClassDump symbolReferences:(CDSymbolReferences *)symbolReferences;
- (void)appendToString:(NSMutableString *)resultString classDump:(CDClassDump *)aClassDump symbolReferences:(CDSymbolReferences *)symbolReferences;
- (void)registerStructuresWithObject:(id <CDStructureRegistration>)anObject phase:(int)phase;
// CDTopologicalSort protocol
- (NSString *)identifier;
- (NSArray *)dependancies;
@end