aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
blob: 29afb3b59144c3963f0b1738def9832c318fdebf (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
// 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>
#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)
    {
    }
  }
}