ANNA Suite  2020b
Multipurpose development suite for Telco applications
InputBind.hpp
Go to the documentation of this file.
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 noexcept(false) {;}
26 };
27 
28 }
29 }
30 
31 #endif
32 
Definition: Bind.hpp:26
InputBind(const char *name, dbms::Data &value)
Definition: InputBind.hpp:20
Definition: Data.hpp:27
Definition: app.hpp:12
Definition: InputBind.hpp:18