Revert "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
new file mode 100644 (file)
index 0000000..92ffbac
--- /dev/null
@@ -0,0 +1,19 @@
+#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 += " }";
+}
+