aboutsummaryrefslogtreecommitdiff
path: root/odb/transaction.ixx
blob: 4f2ff4662e088ccfc287787c13ef22c3a3546097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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_impl& transaction::
  implementation ()
  {
    return *impl_;
  }
}