X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fcomm%2Fhandler%2FDatagramSocket.hpp;fp=include%2Fanna%2Fcomm%2Fhandler%2FDatagramSocket.hpp;h=1e92b0a435efa52d17a7c7ede4a5d8f3fbb59712;hp=19058b556265c23ca5aa8db29dc0b09e2ec6a9b0;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/comm/handler/DatagramSocket.hpp b/include/anna/comm/handler/DatagramSocket.hpp index 19058b5..1e92b0a 100644 --- a/include/anna/comm/handler/DatagramSocket.hpp +++ b/include/anna/comm/handler/DatagramSocket.hpp @@ -28,19 +28,19 @@ public: a_datagramSocket(NULL) {;} - void setup(comm::DatagramSocket* datagramSocket) throw() { a_datagramSocket = datagramSocket; } + void setup(comm::DatagramSocket* datagramSocket) { a_datagramSocket = datagramSocket; } - comm::ClientSocket* getClientSocket() throw(); + comm::ClientSocket* getClientSocket() ; private: comm::DatagramSocket* a_datagramSocket; - void initialize() throw(RuntimeException); - void apply() throw(RuntimeException); - void finalize() throw(); + void initialize() noexcept(false); + void apply() noexcept(false); + void finalize() ; - std::string asString() const throw(); - xml::Node* asXML(xml::Node*) const throw(); + std::string asString() const ; + xml::Node* asXML(xml::Node*) const ; }; }