X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdbms%2FInteger.cpp;fp=source%2Fdbms%2FInteger.cpp;h=0000000000000000000000000000000000000000;hb=a3b95648bd76140ef55e0b5941d423eee6c3856f;hp=605a20be7f7f49a0479311f900e973f4aa77270d;hpb=94fc4366adedbf26ca6ef3104f88d41fa85f5a72;p=anna.git diff --git a/source/dbms/Integer.cpp b/source/dbms/Integer.cpp deleted file mode 100644 index 605a20b..0000000 --- a/source/dbms/Integer.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// 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 - -#include - -using namespace anna; - -std::string dbms::Integer::asString() const -throw() { - std::string result("dbms::Integer { "); - result += dbms::Data::asString(); - result += " | Valor: "; - result += functions::asString(a_value); - return result += " }"; -} -