aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/prepared-query.cxx
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.cxx
parent1c8dc77a0feae8b33e8c06f7ba076bd26d278054 (diff)
Completion of prepared query support
Diffstat (limited to 'odb/sqlite/prepared-query.cxx')
-rw-r--r--odb/sqlite/prepared-query.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/odb/sqlite/prepared-query.cxx b/odb/sqlite/prepared-query.cxx
new file mode 100644
index 0000000..1eb875d
--- /dev/null
+++ b/odb/sqlite/prepared-query.cxx
@@ -0,0 +1,16 @@
+// file : odb/sqlite/prepared-query.cxx
+// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/sqlite/prepared-query.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ prepared_query_impl::
+ ~prepared_query_impl ()
+ {
+ }
+ }
+}