/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include namespace Swift { class HostAddressPort; class Connection { public: typedef boost::shared_ptr ref; enum Error { ReadError, WriteError }; Connection() {} virtual ~Connection() {} virtual void listen() = 0; virtual void connect(const HostAddressPort& address) = 0; virtual void disconnect() = 0; virtual void write(const ByteArray& data) = 0; virtual HostAddressPort getLocalAddress() const = 0; public: boost::signal onConnectFinished; boost::signal&)> onDisconnected; boost::signal onDataRead; boost::signal onDataWritten; }; }