aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/result.cxx')
-rw-r--r--odb/sqlite/result.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/odb/sqlite/result.cxx b/odb/sqlite/result.cxx
new file mode 100644
index 0000000..7e4116f
--- /dev/null
+++ b/odb/sqlite/result.cxx
@@ -0,0 +1,18 @@
+// file : odb/sqlite/result.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/sqlite/result.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ result_impl_base::
+ result_impl_base (const query& q, details::shared_ptr<select_statement> s)
+ : params_ (q.parameters ()), statement_ (s)
+ {
+ }
+ }
+}