/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License * -- * "Set Profile" window. */ #import @class NSWindow, NSComboBox, NSTextView; @interface SetProfile : NSObject { NSWindow *window; NSComboBox *loginComboBox; NSTextView *input; } - init; - (void)setLogin:(NSString*)user; @end