aboutsummaryrefslogtreecommitdiff
path: root/tracer/types/test.hxx
blob: c37692b3eaa2057a62c58c0b476e120071ac3a79 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// file      : tracer/types/test.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef TEST_HXX
#define TEST_HXX

#include <iosfwd>

#ifdef ODB_COMPILER
typedef int int_t;
typedef short num_t;
#else
typedef int num_t;
#endif

typedef num_t num_type;

#pragma db object
struct object1
{
  typedef int int_type;

  #pragma db id
  int_type id_;
};

#pragma db object
struct object2
{
  #pragma db id
  num_type num_;
};

// Template-id with "inner" name (compilation test).
//
template <typename X>
struct num_wrap
{
#ifdef ODB_COMPILER
  typedef num_wrap this_type;
#endif

  X v_;
};

template <typename X>
std::ostream&
operator<< (std::ostream& os, const num_wrap<X>& x)
{
  return os << x.v_;
}

template <typename X>
bool
operator== (const num_wrap<X>& x, const num_wrap<X>& y)
{
  return x.v_ == y.v_;
}

#pragma db object
struct object3
{
  #pragma db id
  num_wrap<int> num_;
};

#endif // TEST_HXX