From a815b90fe870d6d740c91a60ec0633f8bc256337 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 4 Aug 2011 13:32:25 +0200 Subject: Add support for boost::optional and boost::shared_ptr as value wrappers New test: boost/common/optional. --- odb/boost/smart-ptr/wrapper-traits.hxx | 60 ++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 odb/boost/smart-ptr/wrapper-traits.hxx (limited to 'odb/boost/smart-ptr/wrapper-traits.hxx') diff --git a/odb/boost/smart-ptr/wrapper-traits.hxx b/odb/boost/smart-ptr/wrapper-traits.hxx new file mode 100644 index 0000000..5389eca --- /dev/null +++ b/odb/boost/smart-ptr/wrapper-traits.hxx @@ -0,0 +1,60 @@ +// file : odb/boost/smart-ptr/wrapper-traits.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_BOOST_SMART_PTR_WRAPPER_TRAITS_HXX +#define ODB_BOOST_SMART_PTR_WRAPPER_TRAITS_HXX + +#include + +#include + +#include + +namespace odb +{ + // Specialization for boost::shared_ptr. + // + template + class wrapper_traits< ::boost::shared_ptr > + { + public: + typedef T wrapped_type; + typedef ::boost::shared_ptr wrapper_type; + + static const bool null_handler = true; + static const bool null_default = false; + + static bool + get_null (const wrapper_type& p) + { + return !p; + } + + static void + set_null (wrapper_type& p) + { + p.reset (); + } + + static const wrapped_type& + get_ref (const wrapper_type& p) + { + return *p; + } + + static wrapped_type& + set_ref (wrapper_type& p) + { + if (!p) + p.reset (new wrapped_type); + + return *p; + } + }; +} + +#include + +#endif // ODB_BOOST_SMART_PTR_WRAPPER_TRAITS_HXX -- cgit v1.1