X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fcomm%2Fhandler%2FRemoteConnection.hpp;fp=include%2Fanna%2Fcomm%2Fhandler%2FRemoteConnection.hpp;h=29d7e9d39addcd7b3dde489a7c0b21dfa23ecb7b;hp=80da4cc6590ee2678fdc4dd61815a71dc7d8ff99;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/comm/handler/RemoteConnection.hpp b/include/anna/comm/handler/RemoteConnection.hpp index 80da4cc..29d7e9d 100644 --- a/include/anna/comm/handler/RemoteConnection.hpp +++ b/include/anna/comm/handler/RemoteConnection.hpp @@ -26,18 +26,18 @@ public: a_remoteConnection(NULL) {;} - void setup(comm::RemoteConnection* remoteConnection) throw() { a_remoteConnection = remoteConnection; } + void setup(comm::RemoteConnection* remoteConnection) { a_remoteConnection = remoteConnection; } - comm::ClientSocket* getClientSocket() throw(); + comm::ClientSocket* getClientSocket() ; private: comm::RemoteConnection* a_remoteConnection; - 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 ; }; }