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