Remove sql resources to ease anna-ericsson building
[anna.git] / source / dbms / Float.cpp
diff --git a/source/dbms/Float.cpp b/source/dbms/Float.cpp
deleted file mode 100644 (file)
index 7f4185d..0000000
+++ /dev/null
@@ -1,26 +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 <stdio.h>
-
-#include <anna/core/tracing/Logger.hpp>
-
-#include <anna/dbms/Float.hpp>
-
-using namespace anna;
-using namespace anna::dbms;
-
-std::string dbms::Float::asString() const
-throw() {
-  std::string result("dbms::Float { ");
-  result += dbms::Data::asString();
-  result += " | Value: ";
-  result += functions::asString(a_format, a_value);
-  return result += " }";
-}
-