X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Ftimex%2FArithmeticHTTPServer%2FApplication.hpp;fp=example%2Ftimex%2FArithmeticHTTPServer%2FApplication.hpp;h=3c3ca09e14ef59cbb8f80d6d3cee40d81bf56703;hp=457f924e7262ff1fc6ac2a3099923475f0be3444;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/timex/ArithmeticHTTPServer/Application.hpp b/example/timex/ArithmeticHTTPServer/Application.hpp index 457f924..3c3ca09 100644 --- a/example/timex/ArithmeticHTTPServer/Application.hpp +++ b/example/timex/ArithmeticHTTPServer/Application.hpp @@ -37,8 +37,8 @@ class Application : public comm::Application { public: Application (); - comm::IndexedDelivery* getService () throw () { return a_service; } - http4comm::Context* getContext () throw () { return a_context; } + comm::IndexedDelivery* getService () { return a_service; } + http4comm::Context* getContext () { return a_context; } private: comm::Communicator* a_communicator; @@ -50,8 +50,8 @@ private: comm::ServerSocket* a_serverSocket; comm::IndexedDelivery* a_service; - void initialize () throw (RuntimeException); - void run () throw (RuntimeException); + void initialize () noexcept(false); + void run () noexcept(false); }; }