Oracle ODB Runtime Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
query-dynamic.hxx
Go to the documentation of this file.
1 // file : odb/oracle/query-dynamic.hxx
2 // copyright : Copyright (c) 2005-2013 Code Synthesis Tools CC
3 // license : ODB NCUEL; see accompanying LICENSE file
4 
5 #ifndef ODB_ORACLE_QUERY_DYNAMIC_HXX
6 #define ODB_ORACLE_QUERY_DYNAMIC_HXX
7 
8 #include <odb/pre.hxx>
9 
10 #include <odb/query.hxx>
11 #include <odb/query-dynamic.hxx>
12 
13 #include <odb/oracle/query.hxx>
14 
15 namespace odb
16 {
17  namespace oracle
18  {
19  typedef details::shared_ptr<query_param> (*query_param_factory) (
20  const void* val, const query_column_base&, bool by_ref);
21 
22  template <typename T, database_type_id ID>
23  details::shared_ptr<query_param>
24  query_param_factory_impl (const void*, const query_column_base&, bool);
25  }
26 }
27 
28 #include <odb/oracle/query-dynamic.ixx>
29 #include <odb/oracle/query-dynamic.txx>
30 
31 #include <odb/post.hxx>
32 
33 #endif // ODB_ORACLE_QUERY_DYNAMIC_HXX
details::shared_ptr< query_param > query_param_factory_impl(const void *, const query_column_base &, bool)
Definition: query.hxx:647