Remove mysql and oracle resources for anna-ericsson project
[anna.git] / source / dbms / Integer.cpp
diff --git a/source/dbms/Integer.cpp b/source/dbms/Integer.cpp
deleted file mode 100644 (file)
index 605a20b..0000000
+++ /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 <anna/core/functions.hpp>
-
-#include <anna/dbms/Integer.hpp>
-
-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 += " }";
-}
-