diff options
Diffstat (limited to 'odb/boost/smart-ptr/lazy-ptr.ixx')
-rw-r--r-- | odb/boost/smart-ptr/lazy-ptr.ixx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/odb/boost/smart-ptr/lazy-ptr.ixx b/odb/boost/smart-ptr/lazy-ptr.ixx index 0de602c..b695787 100644 --- a/odb/boost/smart-ptr/lazy-ptr.ixx +++ b/odb/boost/smart-ptr/lazy-ptr.ixx @@ -221,6 +221,13 @@ namespace odb } template <class T> + inline ::boost::shared_ptr<T> lazy_shared_ptr<T>:: + get_eager () const + { + return p_; + } + + template <class T> template <class DB, class ID> inline lazy_shared_ptr<T>:: lazy_shared_ptr (DB& db, const ID& id): i_ (db, id) {} @@ -555,6 +562,13 @@ namespace odb } template <class T> + inline ::boost::weak_ptr<T> lazy_weak_ptr<T>:: + get_eager () const + { + return p_; + } + + template <class T> template <class DB, class ID> inline lazy_weak_ptr<T>:: lazy_weak_ptr (DB& db, const ID& id): i_ (db, id) {} |