home *** CD-ROM | disk | FTP | other *** search
- /*
- ---------Text_Console.h------------
-
- Adds a printf method to all Text instances within an application.
-
- Thanks to Sam Streeper for posting the original version of this stuff to
- the world.
-
- You may freely copy, distribute, and reuse the code in this example.
- NeXT disclaims any warranty of any kind, expressed or implied, as to its
- fitness for any particular use.
- ------------------------------------
- */
-
- #import <appkit/Text.h>
-
- @interface Text(Text_Console);
- - (int) printf:(const char *) format, ...;
- @end
- extern id console;
-