aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
blob: f8b1073359a68268a7421d9e5384ba06de3d79c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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,
                      details::shared_ptr<select_statement> s)
        : params_ (q.parameters ()), statement_ (s)
    {
    }
  }
}