Remove mysql and oracle resources for anna-ericsson project
[anna.git] / source / dbms / Float.cc.new
diff --git a/source/dbms/Float.cc.new b/source/dbms/Float.cc.new
deleted file mode 100644 (file)
index 92ffbac..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#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 += " }";
-}
-