summaryrefslogtreecommitdiff
path: root/libodb-sqlite/odb/sqlite/query-dynamic.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:49 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:49 +0300
commitba80b1f8c8354103bb98d31e252c64254f288273 (patch)
tree6e0fe6e82a58ee0fa4f9817dfc764ac5285a2368 /libodb-sqlite/odb/sqlite/query-dynamic.hxx
parentb650caf5661dec901eae39e374c2c2ebd625d152 (diff)
parente5d0186db99492a139237067bab841a5b83463af (diff)
Merge branch 'libodb-sqlite' into multi-package
Diffstat (limited to 'libodb-sqlite/odb/sqlite/query-dynamic.hxx')
-rw-r--r--libodb-sqlite/odb/sqlite/query-dynamic.hxx32
1 files changed, 32 insertions, 0 deletions
diff --git a/libodb-sqlite/odb/sqlite/query-dynamic.hxx b/libodb-sqlite/odb/sqlite/query-dynamic.hxx
new file mode 100644
index 0000000..f720a95
--- /dev/null
+++ b/libodb-sqlite/odb/sqlite/query-dynamic.hxx
@@ -0,0 +1,32 @@
+// file : odb/sqlite/query-dynamic.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_SQLITE_QUERY_DYNAMIC_HXX
+#define ODB_SQLITE_QUERY_DYNAMIC_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/query.hxx>
+#include <odb/query-dynamic.hxx>
+
+#include <odb/sqlite/query.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ typedef details::shared_ptr<query_param> (*query_param_factory) (
+ const void* val, bool by_ref);
+
+ template <typename T, database_type_id ID>
+ details::shared_ptr<query_param>
+ query_param_factory_impl (const void*, bool);
+ }
+}
+
+#include <odb/sqlite/query-dynamic.ixx>
+#include <odb/sqlite/query-dynamic.txx>
+
+#include <odb/post.hxx>
+
+#endif // ODB_SQLITE_QUERY_DYNAMIC_HXX