| OLD | NEW |
| 1 //------------------------------------------------------------------------------
--------- | 1 /* |
| 2 // $Id$ | 2 * Copyright (c) 2006-2015 Erik Doernenburg and contributors |
| 3 // Copyright (c) 2006-2009 by Mulle Kybernetik. See License file for details. | 3 * |
| 4 //------------------------------------------------------------------------------
--------- | 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 5 * not use these files except in compliance with the License. You may obtain |
| 6 * a copy of the License at |
| 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software |
| 11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 * License for the specific language governing permissions and limitations |
| 14 * under the License. |
| 15 */ |
| 5 | 16 |
| 6 #import <Foundation/Foundation.h> | 17 #import <Foundation/Foundation.h> |
| 7 | 18 |
| 8 @interface NSInvocation(OCMAdditions) | 19 @interface NSInvocation(OCMAdditions) |
| 9 | 20 |
| 10 - (id)getArgumentAtIndexAsObject:(int)argIndex; | 21 - (BOOL)hasCharPointerArgument; |
| 22 |
| 23 - (id)getArgumentAtIndexAsObject:(NSInteger)argIndex; |
| 11 | 24 |
| 12 - (NSString *)invocationDescription; | 25 - (NSString *)invocationDescription; |
| 13 | 26 |
| 14 - (NSString *)argumentDescriptionAtIndex:(int)argIndex; | 27 - (NSString*)argumentDescriptionAtIndex:(NSInteger)argIndex; |
| 15 | 28 |
| 16 - (NSString *)objectDescriptionAtIndex:(int)anInt; | 29 - (NSString*)objectDescriptionAtIndex:(NSInteger)anInt; |
| 17 - (NSString *)charDescriptionAtIndex:(int)anInt; | 30 - (NSString*)charDescriptionAtIndex:(NSInteger)anInt; |
| 18 - (NSString *)unsignedCharDescriptionAtIndex:(int)anInt; | 31 - (NSString*)unsignedCharDescriptionAtIndex:(NSInteger)anInt; |
| 19 - (NSString *)intDescriptionAtIndex:(int)anInt; | 32 - (NSString*)intDescriptionAtIndex:(NSInteger)anInt; |
| 20 - (NSString *)unsignedIntDescriptionAtIndex:(int)anInt; | 33 - (NSString*)unsignedIntDescriptionAtIndex:(NSInteger)anInt; |
| 21 - (NSString *)shortDescriptionAtIndex:(int)anInt; | 34 - (NSString*)shortDescriptionAtIndex:(NSInteger)anInt; |
| 22 - (NSString *)unsignedShortDescriptionAtIndex:(int)anInt; | 35 - (NSString*)unsignedShortDescriptionAtIndex:(NSInteger)anInt; |
| 23 - (NSString *)longDescriptionAtIndex:(int)anInt; | 36 - (NSString*)longDescriptionAtIndex:(NSInteger)anInt; |
| 24 - (NSString *)unsignedLongDescriptionAtIndex:(int)anInt; | 37 - (NSString*)unsignedLongDescriptionAtIndex:(NSInteger)anInt; |
| 25 - (NSString *)longLongDescriptionAtIndex:(int)anInt; | 38 - (NSString*)longLongDescriptionAtIndex:(NSInteger)anInt; |
| 26 - (NSString *)unsignedLongLongDescriptionAtIndex:(int)anInt; | 39 - (NSString*)unsignedLongLongDescriptionAtIndex:(NSInteger)anInt; |
| 27 - (NSString *)doubleDescriptionAtIndex:(int)anInt; | 40 - (NSString*)doubleDescriptionAtIndex:(NSInteger)anInt; |
| 28 - (NSString *)floatDescriptionAtIndex:(int)anInt; | 41 - (NSString*)floatDescriptionAtIndex:(NSInteger)anInt; |
| 29 - (NSString *)structDescriptionAtIndex:(int)anInt; | 42 - (NSString*)structDescriptionAtIndex:(NSInteger)anInt; |
| 30 - (NSString *)pointerDescriptionAtIndex:(int)anInt; | 43 - (NSString*)pointerDescriptionAtIndex:(NSInteger)anInt; |
| 31 - (NSString *)cStringDescriptionAtIndex:(int)anInt; | 44 - (NSString*)cStringDescriptionAtIndex:(NSInteger)anInt; |
| 32 - (NSString *)selectorDescriptionAtIndex:(int)anInt; | 45 - (NSString*)selectorDescriptionAtIndex:(NSInteger)anInt; |
| 33 | 46 |
| 34 @end | 47 @end |
| OLD | NEW |