aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
blob: ccd6c05a7c2cf1e0696913623b88e941d7b90c52 (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,
                      const details::shared_ptr<select_statement>& s)
        : params_ (q.parameters ()), statement_ (s)
    {
    }
  }
}