2007-11-02 09:49:29 +00:00
|
|
|
// -*- mode: ObjC -*-
|
|
|
|
|
2005-08-13 20:32:02 +00:00
|
|
|
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
|
2007-03-14 10:07:33 +00:00
|
|
|
// Copyright (C) 1997-1998, 2000-2001, 2004-2007 Steve Nygard
|
2003-12-20 07:27:12 +00:00
|
|
|
|
|
|
|
#import <Foundation/NSObject.h>
|
|
|
|
|
2004-01-16 00:18:21 +00:00
|
|
|
#import "CDStructureRegistrationProtocol.h"
|
2004-01-08 00:43:09 +00:00
|
|
|
|
2003-12-20 07:27:12 +00:00
|
|
|
@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;
|
|
|
|
|
2004-01-16 00:18:21 +00:00
|
|
|
- (void)registerStructuresWithObject:(id <CDStructureRegistration>)anObject phase:(int)phase;
|
2004-01-08 00:43:09 +00:00
|
|
|
|
2003-12-20 07:27:12 +00:00
|
|
|
@end
|