X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcomm%2Fhandler%2FLocalConnection.hpp;h=37ae39efb5bb7b56508037ed55216ac692ecafb0;hb=f34b8069233e9e09208339bb79d8576c1ff962e1;hp=ef123881d98a79dfa1d3a28acf77997fa0cb44d7;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git diff --git a/include/anna/comm/handler/LocalConnection.hpp b/include/anna/comm/handler/LocalConnection.hpp index ef12388..37ae39e 100644 --- a/include/anna/comm/handler/LocalConnection.hpp +++ b/include/anna/comm/handler/LocalConnection.hpp @@ -26,18 +26,18 @@ public: a_localConnection(NULL) {;} - void setup(comm::LocalConnection* localConnection) throw() { a_localConnection = localConnection; } + void setup(comm::LocalConnection* localConnection) { a_localConnection = localConnection; } - comm::ClientSocket* getClientSocket() throw(); + comm::ClientSocket* getClientSocket() ; private: comm::LocalConnection* a_localConnection; - void initialize() throw(RuntimeException); - void finalize() throw(); + void initialize() noexcept(false); + void finalize() ; - std::string asString() const throw(); - xml::Node* asXML(xml::Node*) const throw(); + std::string asString() const ; + xml::Node* asXML(xml::Node*) const ; }; }