aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.cxx
blob: eb99227d255c2899813b2e9226af01439fb7d0ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// file      : odb/statement.cxx
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <cassert>

#include <odb/statement.hxx>

namespace odb
{
  statement::
  ~statement ()
  {
  }

  void statement::
  cached (bool cached)
  {
    assert (cached);
    cached_ = true;
  }
}