aboutsummaryrefslogtreecommitdiff
path: root/odb/transaction.ixx
blob: ad614af01880ca4129701430fc18fc929bfeb746 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// file      : odb/transaction.ixx
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <odb/connection.hxx>

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_;
  }

  // The transaction-specific tracer is stored in the connection. See
  // the connection class for the reason.
  //
  inline void transaction::
  tracer (tracer_type& t)
  {
    impl_->connection ().transaction_tracer_ = &t;
  }

  inline void transaction::
  tracer (tracer_type* t)
  {
    impl_->connection ().transaction_tracer_ = t;
  }

  inline transaction::tracer_type* transaction::
  tracer () const
  {
    return impl_->connection ().transaction_tracer_;
  }
}