/*************************************************************************** SimpleClient.h ------------------- begin : Tue Feb 17 00:04:54 CST 2004 copyright : (C) 2003 by Andy Ruder email : aeruder@ksu.edu ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ @class SimpleClient; #ifndef SIMPLE_CLIENT_H #define SIMPLE_CLIENT_H #import #import @class NSData; @interface SimpleClient : NSObject < NetObject > { id transport; BOOL isConnected; } - (BOOL)isConnected; - (void)connectionLost; - connectionEstablished: (id )aTransport; - dataReceived: (NSData *)data; - (id )transport; @end #endif