summaryrefslogtreecommitdiff
path: root/odb/sqlite/prepared-query.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/prepared-query.hxx')
-rw-r--r--odb/sqlite/prepared-query.hxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/odb/sqlite/prepared-query.hxx b/odb/sqlite/prepared-query.hxx
deleted file mode 100644
index a8873a5..0000000
--- a/odb/sqlite/prepared-query.hxx
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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