00001 /***************************************************************************** 00002 * Author: Valient Gough <vgough@pobox.com> 00003 * 00004 ***************************************************************************** 00005 * Copyright (c) 2001, Valient Gough 00006 * 00007 * This library is free software; you can distribute it and/or modify it under 00008 * the terms of the GNU Lesser General Public License (LGPL), as published by 00009 * the Free Software Foundation; either version 2.1 of the License, or (at your 00010 * option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, but WITHOUT 00013 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00014 * FITNESS FOR A PARTICULAR PURPOSE. See the LGPL in the file COPYING for more 00015 * details. 00016 * 00017 */ 00018 00019 #ifndef _SocketClient_incl_ 00020 #define _SocketClient_incl_ 00021 00022 #include <rel/IODevice.h> 00023 #include <rel/SmartPtr.h> 00024 #include <string> 00025 00026 namespace rel 00027 { 00028 class TypeStream; 00029 00030 class SocketClient 00031 { 00032 public: 00033 static const char *className(); 00034 00035 // connect to a host/port. Returns a coding which can be used for 00036 // communication with remote server. 00037 static SmartPtr<IODevice> connect(const std::string &hostName, 00038 int port); 00039 }; 00040 00041 } // namespace rel 00042 00043 00044 // external C interface, for use as plugin 00045 // first argument is connection endpoint, rest are passed through. 00046 extern "C" 00047 rel::OpaqueValue socketClient_create(const rel::OpaqueValue *args); 00048 00049 00050 #endif 00051 00052