aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-15 13:45:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-19 11:40:30 +0200
commit5dd712307b5ee1e85cf7101c27e9bb978af26976 (patch)
tree29a0569ea455bca893741dd5b5e858d41a9d1f12 /odb/sqlite/result.cxx
parent8112bd0febcfa1e3a76e0d03363facbefc3822f7 (diff)
Get rid of result_impl_base
Diffstat (limited to 'odb/sqlite/result.cxx')
-rw-r--r--odb/sqlite/result.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/odb/sqlite/result.cxx b/odb/sqlite/result.cxx
deleted file mode 100644
index ccd6c05..0000000
--- a/odb/sqlite/result.cxx
+++ /dev/null
@@ -1,19 +0,0 @@
-// file : odb/sqlite/result.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#include <odb/sqlite/result.hxx>
-#include <odb/sqlite/query.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- result_impl_base::
- result_impl_base (const query_base& q,
- const details::shared_ptr<select_statement>& s)
- : params_ (q.parameters ()), statement_ (s)
- {
- }
- }
-}