aboutsummaryrefslogtreecommitdiff
path: root/odb/tracer/database.cxx
blob: 74a87f2ebea308876470f5e6042eac95fa525570 (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
// file      : odb/tracer/database.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <odb/transaction.hxx>
#include <odb/tracer/database.hxx>

namespace odb
{
  namespace tracer
  {
    database::
    ~database ()
    {
    }

    transaction_impl* database::
    begin_transaction ()
    {
      if (odb::transaction::has_current ())
        throw already_in_transaction ();

      return new transaction_impl (*this);
    }
  }
}