X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=source%2Fcomm%2Fhandler%2FBinderSocket.cpp;fp=source%2Fcomm%2Fhandler%2FBinderSocket.cpp;h=b1da86e57ef57e0ad4a4677570b6e4c15a9cfdfa;hp=34ddfe9265076cd91f211bd330590f80734de182;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/source/comm/handler/BinderSocket.cpp b/source/comm/handler/BinderSocket.cpp index 34ddfe9..b1da86e 100644 --- a/source/comm/handler/BinderSocket.cpp +++ b/source/comm/handler/BinderSocket.cpp @@ -25,7 +25,7 @@ using namespace anna; // La apertura de cierre de este Socket se hace desde el comm::Socket. //----------------------------------------------------------------------- void comm::handler::BinderSocket::initialize() -throw(RuntimeException) { +noexcept(false) { if(a_binderSocket == NULL) { string msg(asString()); msg += " | comm::BinderSocket was not established"; @@ -41,13 +41,13 @@ throw(RuntimeException) { // compartido que va a crear. //--------------------------------------------------------------------------------------- void comm::handler::BinderSocket::apply() -throw(RuntimeException) { +noexcept(false) { Guard guard(a_binderSocket); a_binderSocket->responseBind(); } void comm::handler::BinderSocket::finalize() -throw() { +{ if(a_binderSocket == NULL) return; @@ -57,7 +57,7 @@ throw() { } string comm::handler::BinderSocket::asString() const -throw() { +{ string result("comm::handler::BinderSocket { "); result += comm::Handler::asString(); result += " | "; @@ -66,7 +66,7 @@ throw() { } xml::Node* comm::handler::BinderSocket::asXML(xml::Node* parent) const -throw() { +{ xml::Node* result = parent->createChild("comm.handler.BinderSocket"); comm::Handler::asAttribute(result);