Adding a category to NSProxy that fixes a bug so as to allow NSProxies to be
[ITFoundation.git] / ITCategory-NSProxy.h
1 /*
2  *      ITFoundation
3  *      ITCategory-NSProxy.h
4  *
5  *      This is actually a bug fix, as _copyDescription is required by NSLog when
6  *              you supply an object other than a string as a parameter for building a
7  *              string, and yet NSProxy does not implement or proxy it.
8  *
9  *      Copyright (c) 2005 by iThink Software.
10  *      All Rights Reserved.
11  *
12  *      $Id$
13  *
14  */
15
16 #import <Cocoa/Cocoa.h>
17
18 @interface NSProxy (ITCategory)
19
20 - (NSString *)_copyDescription;
21
22 @end