// file : odb/boost/smart-ptr/wrapper-traits.hxx // copyright : Copyright (c) 2009-2015 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; // T can be const. // typedef typename odb::details::meta::remove_const::result unrestricted_wrapped_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 unrestricted_wrapped_type& set_ref (wrapper_type& p) { if (!p) p.reset (new unrestricted_wrapped_type); return const_cast (*p); } }; } #include #endif // ODB_BOOST_SMART_PTR_WRAPPER_TRAITS_HXX