X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fxml%2FData.hpp;h=e4b77386f4f7837ac8468d36f8d7b5211f896ed6;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=bf2ebdcaf6f76c22cf1e039b8a8ac83d1d828925;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/include/anna/xml/Data.hpp b/include/anna/xml/Data.hpp index bf2ebdc..e4b7738 100644 --- a/include/anna/xml/Data.hpp +++ b/include/anna/xml/Data.hpp @@ -1,37 +1,9 @@ -// ANNA - Anna is Not Nothingness 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_xml_Data_hpp @@ -69,43 +41,43 @@ public: Devuelve el valor asociado a este dato XML. \return El valor asociado a este dato XML. */ - const std::string& getValue() const throw() { return a_value; } + const std::string& getValue() const { return a_value; } /** Devuelve el valor asociado a este dato XML. \return El valor asociado a este dato XML. */ - const char* getCStringValue() const throw() { return a_value.c_str(); } + const char* getCStringValue() const { return a_value.c_str(); } /** Devuelve el valor numerico asociado a este dato XML. \return El valor numerico asociado a este dato XML. */ - int getIntegerValue() const throw() { return atoi(a_value.c_str()); } + int getIntegerValue() const { return atoi(a_value.c_str()); } /** * Establece el valor de éste dato XML. * \param value Valor que tomará éste dato XML. */ - void setValue(const char* value) throw() { a_value = (value != NULL) ? value : ""; filter(a_value); } + void setValue(const char* value) { a_value = (value != NULL) ? value : ""; filter(a_value); } /** * Establece el valor de éste dato XML. * \param value Valor que tomará éste dato XML. */ - void setValue(const std::string& value) throw() { a_value = value; } + void setValue(const std::string& value) { a_value = value; } /** * Establece el valor de éste dato XML. * \param value Valor que tomará éste dato XML. */ - void setValue(const int value) throw(); + void setValue(const int value) ; /** Devuelve una cadena con toda la informacion relevante de esta instancia. \return Una cadena con toda la informacion relevante de esta instancia. */ - virtual std::string asString() const throw(); + virtual std::string asString() const ; protected: /** @@ -117,7 +89,7 @@ private: std::string a_value; Node* a_owner; - void setNode(Node* node) throw() { a_owner = node; } + void setNode(Node* node) { a_owner = node; } /** Filtra la cadena recibida como parametro para asegurar que no contiene ninguna @@ -125,7 +97,7 @@ private: este valor. \return La instancia de la cadena una vez modificada. */ - static const std::string& filter(const std::string& str) throw() { return str; } + static const std::string& filter(const std::string& str) { return str; } friend class Node; };