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

#ifndef TEST_HXX
#define TEST_HXX

#include <boost/uuid/uuid.hpp>

#include <odb/core.hxx>

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

  #pragma db id
  unsigned long id_;

  typedef boost::uuids::uuid uuid;

  uuid uuid_;
  uuid null_;

  #pragma db not_null
  uuid zero_;

  bool operator== (const object& x) const
  {
    return id_ == x.id_ &&
      uuid_ == x.uuid_ &&
      null_ == x.null_ &&
      zero_ == x.zero_;
  }
};

#endif // TEST_HXX