aboutsummaryrefslogtreecommitdiff
path: root/boost/common/uuid/test.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-09-05 11:59:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-09-05 11:59:28 +0200
commit5a16b0511ae3ac491ac23bba07f7259f6c255472 (patch)
treef3628f69218f63f46247d720fc1c7915d128425c /boost/common/uuid/test.hxx
parentc77b0419f08708a205acab088b7c95c839b38cfc (diff)
Support for Boost uuid persistence
New Boost sub-profile: uuid. New test: boost/common/uuid. Updated the boost example to use uuid as an object id.
Diffstat (limited to 'boost/common/uuid/test.hxx')
-rw-r--r--boost/common/uuid/test.hxx38
1 files changed, 38 insertions, 0 deletions
diff --git a/boost/common/uuid/test.hxx b/boost/common/uuid/test.hxx
new file mode 100644
index 0000000..d0138e4
--- /dev/null
+++ b/boost/common/uuid/test.hxx
@@ -0,0 +1,38 @@
+// file : boost/common/uuid/test.hxx
+// copyright : Copyright (c) 2009-2012 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