X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fhttp%2Fclient.h;h=37acf0cfe0e3bb08d1483520e9a3cd7bc557dc76;hb=6af1bfce6dc53104c5406adef32d186384525ae3;hp=ee10f8c1cb5a0e389d860c6b9c59ee6a45aeb9a4;hpb=cf8d2e48581eeb8f1b83e8c48321a0bc2ffa6d83;p=libs%2Fnet.git diff --git a/source/http/client.h b/source/http/client.h index ee10f8c..37acf0c 100644 --- a/source/http/client.h +++ b/source/http/client.h @@ -9,6 +9,13 @@ namespace Msp { namespace Http { +class client_busy: public std::logic_error +{ +public: + client_busy(): std::logic_error(std::string()) { } + virtual ~client_busy() throw() { } +}; + class Request; class Response; @@ -16,7 +23,7 @@ class Client { public: sigc::signal signal_response_complete; - sigc::signal signal_socket_error; + sigc::signal signal_socket_error; private: Net::StreamSocket *sock;