aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/smart-ptr/lazy-ptr.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-05-21 19:22:51 -0400
committerBoris Kolpackov <boris@codesynthesis.com>2013-05-21 19:22:51 -0400
commit9608495c8c9a4ee3900cf98830dc7b497c1edd10 (patch)
tree320556960db14204d7c147da0ffadcb71447f0cc /odb/qt/smart-ptr/lazy-ptr.ixx
parente7e51cb35cf143153521f77173185fc37c738aff (diff)
Add ability to get underlying eager pointer in weak pointers
Diffstat (limited to 'odb/qt/smart-ptr/lazy-ptr.ixx')
-rw-r--r--odb/qt/smart-ptr/lazy-ptr.ixx14
1 files changed, 14 insertions, 0 deletions
diff --git a/odb/qt/smart-ptr/lazy-ptr.ixx b/odb/qt/smart-ptr/lazy-ptr.ixx
index 091d729..a78e52c 100644
--- a/odb/qt/smart-ptr/lazy-ptr.ixx
+++ b/odb/qt/smart-ptr/lazy-ptr.ixx
@@ -221,6 +221,13 @@ unload () const
}
template <class T>
+inline QSharedPointer<T> QLazySharedPointer<T>::
+getEager () const
+{
+ return p_;
+}
+
+template <class T>
template <class DB, class ID>
inline QLazySharedPointer<T>::
QLazySharedPointer (DB& db, const ID& id): i_ (db, id) {}
@@ -480,6 +487,13 @@ unload () const
}
template <class T>
+inline QWeakPointer<T> QLazyWeakPointer<T>::
+getEager () const
+{
+ return p_;
+}
+
+template <class T>
template <class DB, class ID>
inline QLazyWeakPointer<T>::
QLazyWeakPointer (DB& db, const ID& id): i_ (db, id) {}