X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fdiameter.comm%2FOriginHostManager.hpp;fp=include%2Fanna%2Fdiameter.comm%2FOriginHostManager.hpp;h=82c0979c7bfaf70d7dd5f868f4360644ccef9681;hp=af5793bfda6f1efa563fb5dba39be5a8e4e5c3a1;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/diameter.comm/OriginHostManager.hpp b/include/anna/diameter.comm/OriginHostManager.hpp index af5793b..82c0979 100644 --- a/include/anna/diameter.comm/OriginHostManager.hpp +++ b/include/anna/diameter.comm/OriginHostManager.hpp @@ -56,17 +56,17 @@ public: /** * First element iterator */ - origin_hosts_it begin() const throw() { return a_origin_hosts.begin(); } + origin_hosts_it begin() const { return a_origin_hosts.begin(); } /** * Last element iterator */ - origin_hosts_it end() const throw() { return a_origin_hosts.end(); } + origin_hosts_it end() const { return a_origin_hosts.end(); } /** * Number of registered origin hosts */ - int size() const throw() { return a_origin_hosts.size(); } + int size() const { return a_origin_hosts.size(); } /** * Registers a new origin host node (externally allocated) associated to a name. @@ -75,7 +75,7 @@ public: * @param name Origin Host Name * @param originHost Associated Origin Host node */ - void registerOriginHost(const std::string &name, OriginHost* originHost) throw(); + void registerOriginHost(const std::string &name, OriginHost* originHost) ; /** * Get the associated origin host node for a provided name. @@ -84,14 +84,14 @@ public: * * @return Found origin host node, NULL if not found */ - OriginHost *getOriginHost(const std::string &name) const throw(); + OriginHost *getOriginHost(const std::string &name) const ; /** Class XML representation. \param parent XML node over which we will put instance information. \return XML with class content. */ - virtual anna::xml::Node* asXML(anna::xml::Node* parent) const throw(); + virtual anna::xml::Node* asXML(anna::xml::Node* parent) const ; friend class anna::Singleton ;