blob: f717f618a292634433209628f5bf7a9aa21a3e8c [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 <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