summaryrefslogtreecommitdiff
path: root/libodb-sqlite/odb/sqlite/prepared-query.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-sqlite/odb/sqlite/prepared-query.hxx')
-rw-r--r--libodb-sqlite/odb/sqlite/prepared-query.hxx37
1 files changed, 37 insertions, 0 deletions
diff --git a/libodb-sqlite/odb/sqlite/prepared-query.hxx b/libodb-sqlite/odb/sqlite/prepared-query.hxx
new file mode 100644
index 0000000..a8873a5
--- /dev/null
+++ b/libodb-sqlite/odb/sqlite/prepared-query.hxx
@@ -0,0 +1,37 @@
+// file : odb/sqlite/prepared-query.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_SQLITE_PREPARED_QUERY_HXX
+#define ODB_SQLITE_PREPARED_QUERY_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/prepared-query.hxx>
+
+#include <odb/sqlite/version.hxx>
+#include <odb/sqlite/query.hxx>
+
+#include <odb/sqlite/details/export.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ struct LIBODB_SQLITE_EXPORT prepared_query_impl: odb::prepared_query_impl
+ {
+ virtual
+ ~prepared_query_impl ();
+
+ prepared_query_impl (odb::connection& c): odb::prepared_query_impl (c) {}
+
+ virtual bool
+ verify_connection (odb::transaction&);
+
+ sqlite::query_base query;
+ };
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_SQLITE_PREPARED_QUERY_HXX