X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/3215be951cbc1e5e8bad14701507b68ebf380ab5..a562b4a9e91163116b73f2df7d6589d812d2278e:/ITCategory-NSProxy.h diff --git a/ITCategory-NSProxy.h b/ITCategory-NSProxy.h new file mode 100644 index 0000000..6848d14 --- /dev/null +++ b/ITCategory-NSProxy.h @@ -0,0 +1,22 @@ +/* + * ITFoundation + * ITCategory-NSProxy.h + * + * This is actually a bug fix, as _copyDescription is required by NSLog when + * you supply an object other than a string as a parameter for building a + * string, and yet NSProxy does not implement or proxy it. + * + * Copyright (c) 2005 by iThink Software. + * All Rights Reserved. + * + * $Id$ + * + */ + +#import + +@interface NSProxy (ITCategory) + +- (NSString *)_copyDescription; + +@end