aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
blob: 7e4116f698c67f8d51906e1f2a5344e640757bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
    {
    }
  }
}