X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fcomm%2FIndexedDelivery.hpp;fp=include%2Fanna%2Fcomm%2FIndexedDelivery.hpp;h=f94bfc5511615dd166d791acce1c7217e65265ed;hp=965801e599b0c8f0b00fb610956f6349bc07bf77;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/comm/IndexedDelivery.hpp b/include/anna/comm/IndexedDelivery.hpp index 965801e..f94bfc5 100644 --- a/include/anna/comm/IndexedDelivery.hpp +++ b/include/anna/comm/IndexedDelivery.hpp @@ -54,11 +54,11 @@ public: \param key Clave usada para calcular el servidor destino. \warning Este metodo debe invocarse siempre antes de enviar un mensaje. */ - void prepare(const int key) throw(RuntimeException); + void prepare(const int key) noexcept(false); - std::string asString() const throw(); + std::string asString() const ; - xml::Node* asXML(xml::Node* parent) const throw(); + xml::Node* asXML(xml::Node* parent) const ; /** Metodo que devuelve el nombre completo de este selector de recursos. @@ -66,7 +66,7 @@ public: a los que pertenece la clase. \return Una cadena con el nombre de este selector. */ - static const char* className() throw() { return "anna::comm::IndexedDelivery"; } + static const char* className() { return "anna::comm::IndexedDelivery"; } private: //------------------------------------------------------------------------------------ @@ -75,8 +75,8 @@ private: const Mode::_v a_mode; iterator a_iikey; - virtual void do_initialize() throw(RuntimeException) {;} - comm::Resource* do_apply() throw(RuntimeException); + virtual void do_initialize() noexcept(false) {;} + comm::Resource* do_apply() noexcept(false); }; }