aboutsummaryrefslogtreecommitdiff
path: root/odb/transaction.ixx
blob: e6247e6bb17c03ea915e949f229a26ef1cfece48 (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-2010 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::session_type& transaction::
  session ()
  {
    return impl_->session ();
  }

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