*/
/*!
- \fn QPointer::QPointer(const QPointer<T> &p)
-
- Copies one guarded pointer from another. The constructed guarded
- pointer points to the same object that \a p points to (which may
- be 0).
-*/
-
-/*!
\fn QPointer::~QPointer()
Destroys the guarded pointer. Just like a normal pointer,
*/
/*!
- \fn QPointer<T>& QPointer::operator=(const QPointer<T> &p)
-
- Assignment operator. This guarded pointer will now point to the
- same object that \a p points to.
-*/
-
-/*!
\fn QPointer<T> & QPointer::operator=(T* p)
Assignment operator. This guarded pointer will now point to the
{ return data(); }
#ifdef qdoc
inline bool isNull() const;
- inline void clear() const;
+ inline void clear();
#else
using QPointerBase::isNull;
using QPointerBase::clear;