X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcore%2Fmt%2FResource.hpp;h=63a5cb082294dff0727e1ac1e1dccb5492fb1241;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=5ba3ab0e38e98ecf6bc09a2ef3f518cf1855e4b3;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/include/anna/core/mt/Resource.hpp b/include/anna/core/mt/Resource.hpp index 5ba3ab0..63a5cb0 100644 --- a/include/anna/core/mt/Resource.hpp +++ b/include/anna/core/mt/Resource.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_core_mt_Resource_hpp @@ -71,7 +43,7 @@ public: Devuelve el nombre logico de este recurso remoto. @return El nombre logico de este recurso remoto. */ - const std::string& getName() const throw() { return a_name; } + const std::string& getName() const { return a_name; } /** Devuelve el estado referente a la habilitacion de este recurso. @@ -83,7 +55,7 @@ public: \return \em true Si el recurso esta habilitado o \em false en otro caso. */ - bool isEnabled() const throw() { return a_isEnabled; } + bool isEnabled() const { return a_isEnabled; } /** * Obtiene el valor de la marca de tiempo asociada a este recurso. Se usa desde las clases @@ -92,13 +64,13 @@ public: * * \param timeStamp Marca de tiempo asociada al recurso. */ - void setTimeStamp(const Millisecond &timeStamp) throw() { a_timeStamp = timeStamp; } + void setTimeStamp(const Millisecond &timeStamp) { a_timeStamp = timeStamp; } /* * Devuelve la marca de tiempo asociada al recurso. * \return la marca de tiempo asociada al recurso. */ - const Millisecond &getTimeStamp() const throw() { return a_timeStamp; } + const Millisecond &getTimeStamp() const { return a_timeStamp; } /** Operador de comparacion. @@ -106,7 +78,7 @@ public: \return Devuelve \em true si el nombre recibido como parametro coincide con el indicado en el constructor de esta instancia o \em false en caso contrario. */ - bool operator == (const std::string& name) const throw() { return a_name == name; } + bool operator == (const std::string& name) const { return a_name == name; } /** Operador de comparacion. @@ -114,7 +86,7 @@ public: \return Devuelve \em true si el nombre recibido como parametro coincide con el indicado en el constructor de esta instancia o \em false en caso contrario. */ - bool operator == (const Resource& other) const throw() { return a_name == other.a_name; } + bool operator == (const Resource& other) const { return a_name == other.a_name; } /** Habilita el uso de este recurso. @@ -122,19 +94,19 @@ public: disponible. \warning La invocacion a este metodo deberia hacerse en modo exclusivo. */ - void enable() throw(RuntimeException) { Guard guard(this, "Resource"); a_isEnabled = true; } + void enable() noexcept(false) { Guard guard(this, "Resource"); a_isEnabled = true; } /** Evita el uso de este recurso. \warning La invocacion a este metodo deberia hacerse en modo exclusivo. */ - void disable() throw(RuntimeException) { Guard guard(this, "Resource"); a_isEnabled = false; } + void disable() noexcept(false) { Guard guard(this, "Resource"); a_isEnabled = false; } /** Devuelve una cadena con la informacin referente a este recurso remoto. @return Una cadena con la informacin referente a este recurso remoto. */ - virtual std::string asString() const throw(); + virtual std::string asString() const ; /** Devuelve el estado de disponibilidad de este recurso. @@ -146,7 +118,7 @@ public: @return \em false si el recurso no esta preparado para ser usado debido a causas internas o \em true en otro caso. */ - virtual bool isAvailable() const throw(RuntimeException) = 0; + virtual bool isAvailable() const noexcept(false) = 0; private: const std::string a_name;