X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=source%2Fcomm%2Fhandler%2FLocalConnection.cpp;h=e1c855ff4fd3af5bd1da6ada0da0ce167b87fe37;hp=d9f49a4e8b30bdcf69dece7dd86964a601da4786;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/source/comm/handler/LocalConnection.cpp b/source/comm/handler/LocalConnection.cpp index d9f49a4..e1c855f 100644 --- a/source/comm/handler/LocalConnection.cpp +++ b/source/comm/handler/LocalConnection.cpp @@ -28,7 +28,7 @@ using namespace std; using namespace anna; void comm::handler::LocalConnection::initialize() -throw(RuntimeException) { +noexcept(false) { LOGMETHOD(TraceMethod traceMethod("comm::handler::LocationConnection", "initialize", ANNA_FILE_LOCATION)); if(a_localConnection == NULL) { @@ -48,7 +48,7 @@ throw(RuntimeException) { } comm::ClientSocket* comm::handler::LocalConnection::getClientSocket() -throw() { +{ return (a_localConnection != NULL) ? a_localConnection->getClientSocket() : NULL; } @@ -69,7 +69,7 @@ throw() { */ void comm::handler::LocalConnection::finalize() -throw() { +{ LOGMETHOD(TraceMethod traceMethod("comm::handler::LocationConnection", "finalize", ANNA_FILE_LOCATION)); if(a_localConnection == NULL) @@ -125,7 +125,7 @@ throw() { } string comm::handler::LocalConnection::asString() const -throw() { +{ string result("comm::handler::LocalConnection { "); result += comm::Handler::asString(); result += " | "; @@ -134,7 +134,7 @@ throw() { } xml::Node* comm::handler::LocalConnection::asXML(xml::Node* parent) const -throw() { +{ xml::Node* result = parent->createChild("comm.handler.LocalConnection"); comm::Handler::asAttribute(result);