blob: 5ac7a525163062c77584d1835b352e4a3c805e35 [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 <Foundation/Foundation.h>
@class CDType;
@interface CDMethodType : NSObject
{
CDType *type;
NSString *offset;
}
- (id)initWithType:(CDType *)aType offset:(NSString *)anOffset;
- (void)dealloc;
- (CDType *)type;
- (NSString *)offset;
- (NSString *)description;
@end