X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fcomm%2Fhandler%2FServerSocket.hpp;fp=include%2Fanna%2Fcomm%2Fhandler%2FServerSocket.hpp;h=2d3bf2470449b8ec9fbe81c058be1b116be69bc9;hp=86181e1f67dbc8f9d9c7ebd094599eda57586e69;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/comm/handler/ServerSocket.hpp b/include/anna/comm/handler/ServerSocket.hpp index 86181e1..2d3bf24 100644 --- a/include/anna/comm/handler/ServerSocket.hpp +++ b/include/anna/comm/handler/ServerSocket.hpp @@ -28,18 +28,18 @@ public: a_serverSocket(NULL) {;} - void setup(comm::ServerSocket* serverSocket) throw() { a_serverSocket = serverSocket; } + void setup(comm::ServerSocket* serverSocket) { a_serverSocket = serverSocket; } private: comm::ServerSocket* a_serverSocket; - void initialize() throw(RuntimeException) ; - void apply() throw(RuntimeException); - void breakAddress(const in_addr_t&) throw() ; - void finalize() throw(); + void initialize() noexcept(false) ; + void apply() noexcept(false); + void breakAddress(const in_addr_t&) ; + void finalize() ; - std::string asString() const throw(); - xml::Node* asXML(xml::Node*) const throw(); + std::string asString() const ; + xml::Node* asXML(xml::Node*) const ; }; }