mirror of
https://github.com/darlinghq/class-dump.git
synced 2025-02-11 23:07:22 +00:00
29 lines
749 B
Objective-C
29 lines
749 B
Objective-C
// 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-2005 Steve Nygard
|
|
|
|
#import "CDOCProtocol.h"
|
|
#import "CDTopologicalSortProtocol.h"
|
|
|
|
@class NSArray, NSMutableString, NSString;
|
|
@class CDSymbolReferences;
|
|
|
|
@interface CDOCCategory : CDOCProtocol <CDTopologicalSort>
|
|
{
|
|
NSString *className;
|
|
}
|
|
|
|
- (void)dealloc;
|
|
|
|
- (NSString *)className;
|
|
- (void)setClassName:(NSString *)newClassName;
|
|
|
|
- (void)appendToString:(NSMutableString *)resultString classDump:(CDClassDump *)aClassDump symbolReferences:(CDSymbolReferences *)symbolReferences;
|
|
|
|
- (NSString *)sortableName;
|
|
|
|
// CDTopologicalSort protocol
|
|
- (NSString *)identifier;
|
|
- (NSArray *)dependancies;
|
|
|
|
@end
|