blob: c2449d629a897b3d4d176fa4eff75653ab2d25a6 [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-2019 Steve Nygard.
#import "CDLCSubUmbrella.h"
@implementation CDLCSubUmbrella
{
struct sub_umbrella_command _command;
NSString *_name;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
_command.cmd = [cursor readInt32];
_command.cmdsize = [cursor readInt32];
NSUInteger length = _command.cmdsize - sizeof(_command);
//NSLog(@"expected length: %u", length);
_name = [cursor readStringOfLength:length encoding:NSASCIIStringEncoding];
//NSLog(@"name: %@", _name);
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _command.cmd;
}
- (uint32_t)cmdsize;
{
return _command.cmdsize;
}
@end