blob: 1b2fc2bc85eeb2eaf46432eeed6894feebc0f176 [file] [log] [blame]
// -*- mode: ObjC -*-
// 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-2009 Steve Nygard.
#import "CDLoadCommand.h"
@class CDRelocationInfo;
@interface CDLCDynamicSymbolTable : CDLoadCommand
{
struct dysymtab_command dysymtab;
NSMutableArray *externalRelocationEntries;
}
- (id)initWithDataCursor:(CDDataCursor *)cursor machOFile:(CDMachOFile *)aMachOFile;
- (void)dealloc;
- (uint32_t)cmd;
- (uint32_t)cmdsize;
- (void)loadSymbols;
- (CDRelocationInfo *)relocationEntryWithOffset:(NSUInteger)offset;
@end