X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fcomm%2FkClient%2Fmain.cpp;h=61bba745514f88c995089c63c629f4e7ca49b371;hb=f34b8069233e9e09208339bb79d8576c1ff962e1;hp=44524dcf8b3743e93489a009349cfe4f54b11bed;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git diff --git a/example/comm/kClient/main.cpp b/example/comm/kClient/main.cpp index 44524dc..61bba74 100644 --- a/example/comm/kClient/main.cpp +++ b/example/comm/kClient/main.cpp @@ -32,24 +32,24 @@ private: test::Response a_response; test::Request a_request; - void eventReceiveMessage (ClientSocket&, const Message&) throw (RuntimeException); - void eventUser (const char* id, const void* context) throw (); + void eventReceiveMessage (ClientSocket&, const Message&) noexcept(false); + void eventUser (const char* id, const void* context) ; }; class KClient : public anna::comm::Application { public: KClient (); - Server* getServer () const throw () { return a_server; } - const test::Menu& getMenu () const throw () { return a_menu; } + Server* getServer () const { return a_server; } + const test::Menu& getMenu () const { return a_menu; } private: MyCommunicator a_communicator; test::Menu a_menu; Server* a_server; - void initialize () throw (RuntimeException); - void run () throw (RuntimeException); + void initialize () noexcept(false); + void run () noexcept(false); }; using namespace std; @@ -92,7 +92,7 @@ KClient::KClient () : } void KClient::initialize () - throw (RuntimeException) + noexcept(false) { LOGMETHOD (TraceMethod tm ("MyCommunicator", "initialize", ANNA_FILE_LOCATION)); @@ -117,7 +117,7 @@ void KClient::initialize () } void KClient::run () - throw (RuntimeException) + noexcept(false) { LOGMETHOD (TraceMethod tm ("MyCommunicator", "run", ANNA_FILE_LOCATION)); @@ -126,7 +126,7 @@ void KClient::run () } void MyCommunicator::eventReceiveMessage (ClientSocket&, const Message& message) - throw (RuntimeException) + noexcept(false) { LOGMETHOD (TraceMethod tm ("MyCommunicator", "eventReceiveMessage", ANNA_FILE_LOCATION)); @@ -145,7 +145,7 @@ void MyCommunicator::eventReceiveMessage (ClientSocket&, const Message& message) // notifica al comunicador mediante un evento de usuario. //----------------------------------------------------------------------------------------- void MyCommunicator::eventUser (const char* id, const void* context) - throw () + { LOGMETHOD (TraceMethod tm ("MyCommunicator", "eventUser", ANNA_FILE_LOCATION));