Remove dynamic exceptions
[anna.git] / include / anna / comm / INetAddress.hpp
index 6ca22f7..167bcc0 100644 (file)
@@ -1,37 +1,9 @@
-// ANNA - Anna is Not 'N' Anymore
-//
-// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
-//
-// https://bitbucket.org/testillano/anna
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-//
-//     * Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-//     * Redistributions in binary form must reproduce the above
-// copyright notice, this list of conditions and the following disclaimer
-// in the documentation and/or other materials provided with the
-// distribution.
-//     * Neither the name of Google Inc. nor the names of its
-// contributors may be used to endorse or promote products derived from
-// this software without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-//
-// Authors: eduardo.ramos.testillano@gmail.com
-//          cisco.tierra@gmail.com
+// ANNA - Anna is Not Nothingness Anymore                                                         //
+//                                                                                                //
+// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
+//                                                                                                //
+// See project site at http://redmine.teslayout.com/projects/anna-suite                           //
+// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
 
 
 #ifndef anna_comm_INetAddress_hpp
@@ -68,7 +40,7 @@ public:
 
   /**
      Constructor.
-     \param device Instance for device (address). 
+     \param device Instance for device (address).
      \param port Port number.
   */
   INetAddress(const Device* device, const int port = -1)  : a_device(device),  a_port(port) {;}
@@ -84,68 +56,68 @@ public:
      \param exceptionWhenNull Exception is launched in case the device returned is NULL.
      \return Device (address) associated to this instance.
   */
-  const Device* getDevice(const bool exceptionWhenNull = true) const throw(RuntimeException);
+  const Device* getDevice(const bool exceptionWhenNull = true) const noexcept(false);
 
   /**
      Returns the port associated to this instance.
      \return Port associated to this instance.
   */
-  int getPort() const throw() { return a_port; }
+  int getPort() const { return a_port; }
 
   /**
      Sets the address for this instance.
      \param device Address provided.
   */
-  void setAddress(const Device* device) throw()  { a_device = device;  }
+  void setAddress(const Device* device)   { a_device = device;  }
 
   /**
      Sets the port for this instance.
      \param port Port provided.
   */
-  void setPort(const int port) throw() { a_port = port; }
+  void setPort(const int port) { a_port = port; }
 
   /**
      Copy operator.
-     \param right Source address to be copied. 
+     \param right Source address to be copied.
   */
-  INetAddress& operator = (const INetAddress& right) throw() { a_device = right.a_device; a_port = right.a_port; return *this; }
+  INetAddress& operator = (const INetAddress& right) { a_device = right.a_device; a_port = right.a_port; return *this; }
 
   /**
-    Comparison operator. 
+    Comparison operator.
     \param right Source address to be compared.
     @return \em true when address provided is equal to this \em false in other case.
   */
-  bool operator == (const INetAddress& right) const throw() { return a_device == right.a_device && a_port == right.a_port; }
+  bool operator == (const INetAddress& right) const { return a_device == right.a_device && a_port == right.a_port; }
 
   /**
-     Returns the initialized state for this network address. 
-     @return \em true when initialized, \em false when not. 
+     Returns the initialized state for this network address.
+     @return \em true when initialized, \em false when not.
   */
-  bool isNull() const throw() { return (a_device == NULL || a_port == -1);  }
+  bool isNull() const { return (a_device == NULL || a_port == -1);  }
 
   /**
-     Clear the content for this instance. 
+     Clear the content for this instance.
   */
-  void clear() throw() { a_device = NULL; a_port = -1; }
+  void clear() { a_device = NULL; a_port = -1; }
 
   /**
      Returns string with relevant information for this instance.
      @return string with relevant information for this instance.
   */
-  std::string asString() const throw();
+  std::string asString() const ;
 
   /**
      Returns string with low-level format relevant information for this instance.
      @return string with low-level format relevant information for this instance.
   */
-  std::string serialize() const throw();
+  std::string serialize() const ;
 
   /**
      Returns XML document with relevant information for this instance.
      \param parent XML node from which created data will depend on.
      @return XML document with relevant information for this instance.
   */
-  xml::Node* asXML(xml::Node* parent) const throw(RuntimeException);
+  xml::Node* asXML(xml::Node* parent) const noexcept(false);
 
 private:
   const Device* a_device;