blob: 5f4630197ab6c6173f3d64cb5a091884d1977833 [file] [log] [blame]
// 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-2006 Steve Nygard
#import <Foundation/NSObject.h>
#import "CDStructureRegistrationProtocol.h"
@class NSMutableArray;
@class CDType;
@interface CDMethodType : NSObject
{
CDType *type;
NSString *offset;
}
- (id)initWithType:(CDType *)aType offset:(NSString *)anOffset;
- (void)dealloc;
- (CDType *)type;
- (NSString *)offset;
- (NSString *)description;
- (void)registerStructuresWithObject:(id <CDStructureRegistration>)anObject phase:(int)phase;
@end