diff options
Diffstat (limited to 'boost/common/uuid/test.hxx')
-rw-r--r-- | boost/common/uuid/test.hxx | 38 |
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 |