aboutsummaryrefslogtreecommitdiff
path: root/common/erase-query/test.hxx
blob: 61c0be686008849e6d7e52744f5e7200b51c1e96 (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      : common/erase-query/test.hxx
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef TEST_HXX
#define TEST_HXX

#include <vector>

#include <odb/core.hxx>

struct object2;

#pragma db object
struct object
{
  object (unsigned long id)
      : id_ (id), o1 (0), o2 (0)
  {
  }

  object ()
      : o1 (0), o2 (0)
  {
  }

  #pragma db id
  unsigned long id_;

  std::vector<int> v;

  int num;

  object* o1;
  object2* o2;
};

#pragma db object
struct object2
{
  #pragma db id auto
  unsigned long id_;

  int num;
};

#endif // TEST_HXX