X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fcomm%2FdatagramKClient%2Fmain.cpp;fp=example%2Fcomm%2FdatagramKClient%2Fmain.cpp;h=9fe3ce1058a9c12dbd67d0c350f59ee8e41c0aca;hp=82688b418ab2cb09bc8cd362cebe0bb11a0df966;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/comm/datagramKClient/main.cpp b/example/comm/datagramKClient/main.cpp index 82688b4..9fe3ce1 100644 --- a/example/comm/datagramKClient/main.cpp +++ b/example/comm/datagramKClient/main.cpp @@ -32,16 +32,16 @@ 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 (); - comm::DatagramSocket* getServer () const throw () { return a_output; } - const test::Menu& getMenu () const throw () { return a_menu; } + comm::DatagramSocket* getServer () const { return a_output; } + const test::Menu& getMenu () const { return a_menu; } private: MyCommunicator a_communicator; @@ -49,8 +49,8 @@ private: comm::DatagramSocket* a_output; comm::DatagramSocket* a_input; - 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) { CommandLine& cl (CommandLine::instantiate ()); @@ -118,14 +118,14 @@ void KClient::initialize () } void KClient::run () - throw (RuntimeException) + noexcept(false) { a_menu.paint (); a_communicator.accept (); } void MyCommunicator::eventReceiveMessage (ClientSocket&, const Message& message) - throw (RuntimeException) + noexcept(false) { a_response.decode (message.getBody ()); @@ -142,7 +142,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));