/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License * -- * Channel joining dialog. */ #import @class NSWindow, NSTextField, NSComboBox; @class NSString; @interface JoinChannel : NSObject { NSWindow *window; NSTextField *channelField; NSComboBox *instanceField; } - init; - (void)setLogin:(NSString*)str; @end