Licensing ITFoundation under the GNU General Public License version 2.
[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 iThink Software
10  *
11  */
12
13 #import <Foundation/Foundation.h>
14
15 @interface NSProxy (ITFoundationCategory)
16
17 - (NSString *)_copyDescription;
18
19 @end