Remove dynamic exceptions
[anna.git] / include / anna / comm / Codec.hpp
index b1ba370..be95c73 100644 (file)
@@ -1,37 +1,9 @@
-// ANNA - Anna is Not Nothingness Anymore
-//
-// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
-//
-// http://redmine.teslayout.com/projects/anna-suite
-//
-// 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 the copyright holder 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_Codec_hpp
@@ -131,7 +103,7 @@ public:
      al mensaje y viceversa.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, std::string& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, std::string& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -144,7 +116,7 @@ public:
      al mensaje y viceversa.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, const char*& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, const char*& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -157,7 +129,7 @@ public:
      al mensaje y viceversa.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, int& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, int& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -170,7 +142,7 @@ public:
      al mensaje y viceversa.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, S64& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, S64& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -183,7 +155,7 @@ public:
      al mensaje y viceversa.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, bool& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, bool& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -196,7 +168,7 @@ public:
      al mensaje y viceversa. Debe tener activado el sistema de copia profunda.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, DataBlock& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, DataBlock& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -209,7 +181,7 @@ public:
      al mensaje y viceversa. Debe tener activado el sistema de copia profunda.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, float& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, float& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -222,7 +194,7 @@ public:
      al mensaje y viceversa. Debe tener activado el sistema de copia profunda.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, double& value) throw(RuntimeException) { return CompatCodec::attach(name, size(), value); }
+  const Variable* attach(const char* name, double& value) noexcept(false) { return CompatCodec::attach(name, size(), value); }
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -235,7 +207,7 @@ public:
      al mensaje y viceversa. Debe tener activado el sistema de copia profunda.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, Second& value) throw(RuntimeException);
+  const Variable* attach(const char* name, Second& value) noexcept(false);
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -248,7 +220,7 @@ public:
      al mensaje y viceversa. Debe tener activado el sistema de copia profunda.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, Millisecond& value) throw(RuntimeException);
+  const Variable* attach(const char* name, Millisecond& value) noexcept(false);
 
   /**
      Asocia el valor recibido como parametro al dato interno identificado por `id'. Esta clase
@@ -261,7 +233,7 @@ public:
      al mensaje y viceversa. Debe tener activado el sistema de copia profunda.
      @return Un puntero que hace referencia al nuevo dato interno que ha sido creado.
   */
-  const Variable* attach(const char* name, Microsecond& value) throw(RuntimeException);
+  const Variable* attach(const char* name, Microsecond& value) noexcept(false);
 };
 
 }