// // NSMethodSignatureAdditions.m // HigherOrderMessaging // // Created by Ofri Wolfus on 11/23/05. // Copyright 2005 Ofri Wolfus. All rights reserved. // #import "NSMethodSignatureAdditions.h" @implementation NSMethodSignature (HOMAdditions) - (const char *)types { return _types; } - (void)setTypes:(const char *)newTypes { _types = newTypes; } - (void)setReturnValueLength:(unsigned)newLength { _returnValueLength = newLength; } @end /*@implementation NSMethodSignature (HOMCopying) //Force copy using NSCopyObject - (id)copyWithZone:(NSZone *)zone { return NSCopyObject(self, 0, zone); } @end*/