Remove sql resources to ease anna-ericsson building
[anna.git] / include / anna / dbms / InputBind.hpp
diff --git a/include/anna/dbms/InputBind.hpp b/include/anna/dbms/InputBind.hpp
deleted file mode 100644 (file)
index 069fb22..0000000
+++ /dev/null
@@ -1,32 +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 //
-
-
-#ifndef anna_dbms_InputBind_hpp
-#define anna_dbms_InputBind_hpp
-
-#include <anna/dbms/Bind.hpp>
-
-namespace anna {
-
-namespace dbms {
-
-class InputBind : public Bind {
-protected:
-  InputBind(const char* name, dbms::Data& value) : Bind(name, value) {;}
-
-private:
-  // Ă‰ste metodo no sera invocado nunca. A partir de un Input nunca hay que
-  // convertir de C++ -> RDBMS
-  void decode() const throw(RuntimeException) {;}
-};
-
-}
-}
-
-#endif
-