mirror of
https://github.com/darlinghq/class-dump.git
synced 2024-11-27 22:30:39 +00:00
34 lines
702 B
Objective-C
34 lines
702 B
Objective-C
//
|
|
// $Id: CDOCSymtab.h,v 1.7 2004/01/06 02:31:42 nygard Exp $
|
|
//
|
|
|
|
// 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 Steve Nygard
|
|
|
|
#import <Foundation/NSObject.h>
|
|
|
|
@class NSArray, NSMutableString;
|
|
@class CDClassDump2;
|
|
|
|
@interface CDOCSymtab : NSObject
|
|
{
|
|
NSArray *classes;
|
|
NSArray *categories;
|
|
}
|
|
|
|
- (id)init;
|
|
- (void)dealloc;
|
|
|
|
- (NSArray *)classes;
|
|
- (void)setClasses:(NSArray *)newClasses;
|
|
|
|
- (NSArray *)categories;
|
|
- (void)setCategories:(NSArray *)newCategories;
|
|
|
|
- (NSString *)description;
|
|
|
|
- (void)appendToString:(NSMutableString *)resultString classDump:(CDClassDump2 *)aClassDump;
|
|
|
|
@end
|