// file : odb/tr1/pointer-traits.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_TR1_POINTER_TRAITS_HXX #define ODB_TR1_POINTER_TRAITS_HXX #include // // This header assumes that the necessary TR1 header has already // been included. // #include namespace odb { // Specialization for std::tr1::shared_ptr. // template class pointer_traits > { public: static pointer_kind const kind = pk_shared; static bool const lazy = false; typedef T element_type; typedef std::tr1::shared_ptr pointer_type; typedef std::tr1::shared_ptr const_pointer_type; typedef smart_ptr_guard guard; static element_type* get_ptr (const pointer_type& p) { return p.get (); } static element_type& get_ref (const pointer_type& p) { return *p; } static bool null_ptr (const pointer_type& p) { return !p; } public: static void* allocate (std::size_t n) { return operator new (n); } static void free (void* p) { operator delete (p); } }; // Specialization for std::tr1::weak_ptr. // template class pointer_traits > { public: static pointer_kind const kind = pk_weak; static bool const lazy = false; typedef T element_type; typedef std::tr1::weak_ptr pointer_type; typedef std::tr1::shared_ptr strong_pointer_type; static strong_pointer_type lock (const pointer_type& p) { return p.lock (); } }; } #include #endif // ODB_TR1_POINTER_TRAITS_HXX