X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fcomm%2Fhandler%2FClientSocket.hpp;fp=include%2Fanna%2Fcomm%2Fhandler%2FClientSocket.hpp;h=019144d66d0fba8596e549c163722eaac3bd4edb;hp=167242b0dfc9d16a5a68a6158cd1252332e870e8;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/comm/handler/ClientSocket.hpp b/include/anna/comm/handler/ClientSocket.hpp index 167242b..019144d 100644 --- a/include/anna/comm/handler/ClientSocket.hpp +++ b/include/anna/comm/handler/ClientSocket.hpp @@ -26,18 +26,18 @@ public: a_clientSocket(NULL) {;} - void setup(comm::ClientSocket* clientSocket) throw() { a_clientSocket = clientSocket; } + void setup(comm::ClientSocket* clientSocket) { a_clientSocket = clientSocket; } - comm::ClientSocket* getClientSocket() throw() { return a_clientSocket; } + comm::ClientSocket* getClientSocket() { return a_clientSocket; } private: comm::ClientSocket* a_clientSocket; - void initialize() throw(RuntimeException); - void finalize() throw(); - void clone() throw(RuntimeException); - std::string asString() const throw(); - xml::Node* asXML(xml::Node*) const throw(); + void initialize() noexcept(false); + void finalize() ; + void clone() noexcept(false); + std::string asString() const ; + xml::Node* asXML(xml::Node*) const ; }; }