X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fcore%2Futil%2FVariable.cpp;h=60fdd6ab91996ea4057bae76459c6017c3547546;hb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;hp=e0ecce17190510c4b49349f9e7cdd5bc9665575f;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/source/core/util/Variable.cpp b/source/core/util/Variable.cpp index e0ecce1..60fdd6a 100644 --- a/source/core/util/Variable.cpp +++ b/source/core/util/Variable.cpp @@ -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 // #include @@ -60,6 +32,7 @@ Variable::Variable(const char* name, const Type::_v type) : case Type::Float: a_value.a_float = &a_aux.theFloat; break; case Type::Double: a_value.a_double = &a_aux.theDouble; break; case Type::Custom: a_value.a_custom = NULL; break; + default: break; } } @@ -76,6 +49,7 @@ Variable::~Variable() { delete a_value.a_dataBlock; a_value.a_dataBlock = NULL; break; + default: break; } } @@ -171,6 +145,7 @@ throw(RuntimeException) { switch(a_type) { case Type::Integer: result = *a_value.a_integer; break; case Type::Integer64: result = *a_value.a_longInteger; break; + default: break; } return result; @@ -199,6 +174,7 @@ throw(RuntimeException) { switch(a_type) { case Type::Float: result = *a_value.a_float; break; case Type::Double: result = (float) *a_value.a_double; break; + default: break; } return result; @@ -213,6 +189,7 @@ throw(RuntimeException) { switch(a_type) { case Type::Float: result = (double) *a_value.a_float; break; case Type::Double: result = *a_value.a_double; break; + default: break; } return result; @@ -237,6 +214,7 @@ throw() { case Type::Float: result += functions::asString("%f", *a_value.a_float); break; case Type::Double: result += functions::asString("%g", *a_value.a_double); break; case Type::Custom: result += functions::asHexString(anna_ptrnumber_cast(a_value.a_custom)); break; + default: break; } } @@ -256,6 +234,7 @@ throw() { case Type::Float: result = a_value.a_float; break; case Type::Double: result = a_value.a_double; break; case Type::Custom: result = a_value.a_custom; break; + default: break; } return result; @@ -274,6 +253,7 @@ throw() { case Type::Float: result = a_value.a_float; break; case Type::Double: result = a_value.a_double; break; case Type::Custom: result = a_value.a_custom; break; + default: break; } return result;