Add no-deprecated to warnings due to dynamic exceptions.
[anna.git] / include / anna / dbms / InputBind.hpp
1 // ANNA - Anna is Not Nothingness Anymore                                                         //
2 //                                                                                                //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
4 //                                                                                                //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite                           //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7
8
9 #ifndef anna_dbms_InputBind_hpp
10 #define anna_dbms_InputBind_hpp
11
12 #include <anna/dbms/Bind.hpp>
13
14 namespace anna {
15
16 namespace dbms {
17
18 class InputBind : public Bind {
19 protected:
20   InputBind(const char* name, dbms::Data& value) : Bind(name, value) {;}
21
22 private:
23   // Ă‰ste metodo no sera invocado nunca. A partir de un Input nunca hay que
24   // convertir de C++ -> RDBMS
25   void decode() const throw(RuntimeException) {;}
26 };
27
28 }
29 }
30
31 #endif
32