/* * Grouch Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License */ #import #import @interface InfoWindow : NSObject { NSWindow *window; NSTextView *output; NSString *name; } + infoWithNick:(NSString*)nick; - initWithNick:(NSString*)nick; - (void)dealloc; - (void)createWindow; - (void)profile:(NSString*)str; - (void)awayMessage:(NSString*)str; - (void)finishedProfile; @end