X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fcomm%2FkClient%2Fmain.cpp;fp=example%2Fcomm%2FkClient%2Fmain.cpp;h=61bba745514f88c995089c63c629f4e7ca49b371;hp=44524dcf8b3743e93489a009349cfe4f54b11bed;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 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));