blob: de4789146305e61c4138d90099c5f2215b7d3171 [file] [log] [blame]
// 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 <Foundation/NSObject.h>
@class NSArray, NSMutableSet, NSMutableString, NSString;
@interface CDSymbolReferences : NSObject
{
NSMutableSet *classes;
NSMutableSet *protocols;
}
- (id)init;
- (void)dealloc;
- (NSArray *)classes;
- (void)addClassName:(NSString *)aClassName;
- (void)removeClassName:(NSString *)aClassName;
- (NSArray *)protocols;
- (void)addProtocolName:(NSString *)aProtocolName;
- (void)addProtocolNamesFromArray:(NSArray *)protocolNames;
- (NSString *)description;
- (void)_appendToString:(NSMutableString *)resultString;
- (NSString *)referenceString;
@end