blob: da18fb5a88d0eb1697fadc66c858b2340a810e6b [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 "CDLCSubFramework.h"
#import "CDDataCursor.h"
@implementation CDLCSubFramework
- (id)initWithDataCursor:(CDDataCursor *)cursor machOFile:(CDMachOFile *)aMachOFile;
{
NSUInteger length;
if ([super initWithDataCursor:cursor machOFile:aMachOFile] == nil)
return nil;
command.cmd = [cursor readInt32];
command.cmdsize = [cursor readInt32];
length = command.cmdsize - sizeof(command);
//NSLog(@"expected length: %u", length);
name = [[cursor readStringOfLength:length encoding:NSASCIIStringEncoding] retain];
//NSLog(@"name: %@", name);
return self;
}
- (void)dealloc;
{
[name release];
[super dealloc];
}
- (uint32_t)cmd;
{
return command.cmd;
}
- (uint32_t)cmdsize;
{
return command.cmdsize;
}
- (NSString *)name;
{
return name;
}
@end