blob: bbd3f4dfe849efab761162f53c465b53d533bb4a [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 "CDOCIvar.h"
#import <Foundation/Foundation.h>
#import "CDClassDump.h"
#import "CDTypeFormatter.h"
@implementation CDOCIvar
- (id)initWithName:(NSString *)aName type:(NSString *)aType offset:(int)anOffset;
{
if ([super init] == nil)
return nil;
name = [aName retain];
type = [aType retain];
offset = anOffset;
return self;
}
- (void)dealloc;
{
[name release];
[type release];
[super dealloc];
}
- (NSString *)name;
{
return name;
}
- (NSString *)type;
{
return type;
}
- (int)offset;
{
return offset;
}
- (NSString *)description;
{
return [NSString stringWithFormat:@"[%@] name: %@, type: '%@', offset: %d",
NSStringFromClass([self class]), name, type, offset];
}
- (void)appendToString:(NSMutableString *)resultString classDump:(CDClassDump *)aClassDump symbolReferences:(CDSymbolReferences *)symbolReferences;
{
NSString *formattedString;
formattedString = [[aClassDump ivarTypeFormatter] formatVariable:name type:type symbolReferences:symbolReferences];
if (formattedString != nil) {
[resultString appendString:formattedString];
[resultString appendString:@";"];
if ([aClassDump shouldShowIvarOffsets] == YES) {
[resultString appendFormat:@"\t// %d = 0x%x", offset, offset];
}
} else
[resultString appendFormat:@" // Error parsing type: %@, name: %@", type, name];
}
@end