summaryrefslogtreecommitdiff
path: root/pgsql/savepoint/test.hxx
blob: 7e0199290b5b95078137c35e1036b1cf06e708cd (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      : pgsql/savepoint/test.hxx
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef TEST_HXX
#define TEST_HXX

#include <string>

#include <odb/core.hxx>

#pragma db object bulk(100)
struct object
{
  object (unsigned long id)
      : id_ (id)
  {
  }

  object ()
  {
  }

  #pragma db id
  unsigned long id_;
};

#endif // TEST_HXX