aboutsummaryrefslogtreecommitdiff
path: root/odb/transaction.ixx
blob: d838a9f07e6f194a9363df1045cc62703f01251f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// file      : odb/transaction.ixx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

namespace odb
{
  inline transaction::database_type& transaction::
  database ()
  {
    return impl_->database ();
  }

  inline transaction::connection_type& transaction::
  connection ()
  {
    return impl_->connection ();
  }

  inline transaction_impl& transaction::
  implementation ()
  {
    return *impl_;
  }
}