Remove mysql and oracle resources for anna-ericsson project
[anna.git] / source / dbms / Bind.cpp
diff --git a/source/dbms/Bind.cpp b/source/dbms/Bind.cpp
deleted file mode 100644 (file)
index b54cdbe..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/dbms/Bind.hpp>
-#include <anna/dbms/Data.hpp>
-
-using namespace anna;
-
-std::string dbms::Bind::asString() const
-throw() {
-  std::string result("dbms::Bind { Name: ");
-  result += a_name;
-  result += " | ";
-  result += a_data.asString();
-  return result += " }";
-}
-
-