X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fcomm%2FdatagramKClient%2Fmain.cpp;h=9fe3ce1058a9c12dbd67d0c350f59ee8e41c0aca;hb=refs%2Fheads%2Fmaster;hp=e8fe252b7c1a0797002090d74cb7fe58e06c197b;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git diff --git a/example/comm/datagramKClient/main.cpp b/example/comm/datagramKClient/main.cpp index e8fe252..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,12 +92,10 @@ KClient::KClient () : } void KClient::initialize () - throw (RuntimeException) + noexcept(false) { CommandLine& cl (CommandLine::instantiate ()); - Network& network = Network::instantiate (); - /* Define el Socket para enviar las respuestas */ const comm::Device* device = Network::instantiate ().find (Device::asAddress (cl.getValue ("as"))); int port = cl.getIntegerValue ("ps"); @@ -120,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 ()); @@ -144,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));