X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcomm%2Fhandler%2FServerSocket.hpp;h=2d3bf2470449b8ec9fbe81c058be1b116be69bc9;hb=f34b8069233e9e09208339bb79d8576c1ff962e1;hp=86181e1f67dbc8f9d9c7ebd094599eda57586e69;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git 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 ; }; }