Remove dynamic exceptions
[anna.git] / include / anna / diameter.comm / OriginHostManager.hpp
index af5793b..82c0979 100644 (file)
@@ -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 <OriginHostManager>;