class-dump/CDDylibCommand.h
Steve Nygard 794d46725b A bunch of work starting at the beginning, with classes to process the
Mach-O files and others generated from the Objective-C segment.
2003-12-09 01:50:32 +00:00

21 lines
423 B
Objective-C

#import "CDLoadCommand.h"
#include <mach-o/loader.h>
@interface CDDylibCommand : CDLoadCommand
{
const struct dylib_command *dylibCommand;
NSString *name;
}
- (id)initWithPointer:(const void *)ptr machOFile:(CDMachOFile *)aMachOFile;
- (void)dealloc;
- (NSString *)name;
- (unsigned long)timestamp;
- (unsigned long)currentVersion;
- (unsigned long)compatibilityVersion;
//- (NSString *)extraDescription;
@end