blob: 54474fd031717afc6a7d2ad5d974793496d63ee0 [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.
@class CDType;
@interface CDMethodType : NSObject
- (id)initWithType:(CDType *)type offset:(NSString *)offset;
@property (readonly) CDType *type;
@property (readonly) NSString *offset;
@end