/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License * -- * Protocol bundle loader. */ #import @class NSArray; @interface Loader : NSObject + (NSArray*)getProtocols; + (void)loadProtocol:(NSString*)proto withHost:(NSString*)host atPort:(int)port withLogin:(NSString*)login andPassword:(NSString*)passwd; @end