aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/prepared-query.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-12 17:24:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-19 11:40:30 +0200
commitd94948b8bccfd8748245726487d54c41bb199baf (patch)
treec83176902ed8cb3c49532078e0705e2fc6621555 /odb/sqlite/prepared-query.hxx
parent1c8dc77a0feae8b33e8c06f7ba076bd26d278054 (diff)
Completion of prepared query support
Diffstat (limited to 'odb/sqlite/prepared-query.hxx')
-rw-r--r--odb/sqlite/prepared-query.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/sqlite/prepared-query.hxx b/odb/sqlite/prepared-query.hxx
index aee1d95..ddc2c9c 100644
--- a/odb/sqlite/prepared-query.hxx
+++ b/odb/sqlite/prepared-query.hxx
@@ -8,11 +8,9 @@
#include <odb/pre.hxx>
#include <odb/prepared-query.hxx>
-#include <odb/details/shared-ptr.hxx>
#include <odb/sqlite/version.hxx>
#include <odb/sqlite/query.hxx>
-#include <odb/sqlite/statement.hxx>
#include <odb/sqlite/details/export.hxx>
@@ -22,8 +20,10 @@ namespace odb
{
struct LIBODB_SQLITE_EXPORT prepared_query_impl: odb::prepared_query_impl
{
+ virtual
+ ~prepared_query_impl ();
+
sqlite::query_base query;
- details::shared_ptr<select_statement> stmt;
};
}
}