blob: 6d0ac7518eb0fcfd45c2744321a1f26a7c05caeb [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-2010 Steve Nygard.
#import "CDLoadCommand.h"
@interface CDLCUnknown : CDLoadCommand
{
struct load_command loadCommand;
NSMutableData *commandData;
}
- (id)initWithDataCursor:(CDDataCursor *)cursor machOFile:(CDMachOFile *)aMachOFile;
- (void)dealloc;
- (uint32_t)cmd;
- (uint32_t)cmdsize;
@end