mirror of
https://github.com/darlinghq/class-dump.git
synced 2024-11-28 06:40:26 +00:00
25 lines
411 B
Objective-C
25 lines
411 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
@class NSArray, NSMutableString;
|
|
|
|
@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;
|
|
|
|
@end
|