QDebug: add missing docs for op<<(Container)

Change-Id: I9f89d8e792bf0d432a0b2522f26026c6ad81e2f4
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Marc Mutz 2015-06-24 15:25:11 +02:00
parent decc546368
commit c87bb03e5e
2 changed files with 64 additions and 8 deletions

View File

@ -668,6 +668,62 @@ QDebug &QDebug::resetFormat()
\internal
*/
/*!
\fn QDebug operator<<(QDebug stream, const QList<T> &list)
\relates QDebug
Writes the contents of \a list to \a stream. \c T needs to
support streaming into QDebug.
*/
/*!
\fn QDebug operator<<(QDebug stream, const QVector<T> &vector)
\relates QDebug
Writes the contents of \a vector to \a stream. \c T needs to
support streaming into QDebug.
*/
/*!
\fn QDebug operator<<(QDebug stream, const QSet<T> &set)
\relates QDebug
Writes the contents of \a set to \a stream. \c T needs to
support streaming into QDebug.
*/
/*!
\fn QDebug operator<<(QDebug stream, const QMap<Key, T> &map)
\relates QDebug
Writes the contents of \a map to \a stream. Both \c Key and
\c T need to support streaming into QDebug.
*/
/*!
\fn QDebug operator<<(QDebug stream, const QHash<Key, T> &hash)
\relates QDebug
Writes the contents of \a hash to \a stream. Both \c Key and
\c T need to support streaming into QDebug.
*/
/*!
\fn QDebug operator<<(QDebug stream, const QPair<T1, T2> &pair)
\relates QDebug
Writes the contents of \a pair to \a stream. Both \c T1 and
\c T2 need to support streaming into QDebug.
*/
/*!
\fn QDebug operator<<(QDebug stream, const QFlags<T> &flag)
\relates QDebug
\since 4.7
Writes \a flag to \a stream.
*/
/*!
\class QDebugStateSaver

View File

@ -201,12 +201,12 @@ inline QDebug operator<<(QDebug debug, const QVector<T> &vec)
return operator<<(debug, vec.toList());
}
template <class aKey, class aT>
inline QDebug operator<<(QDebug debug, const QMap<aKey, aT> &map)
template <class Key, class T>
inline QDebug operator<<(QDebug debug, const QMap<Key, T> &map)
{
const bool oldSetting = debug.autoInsertSpaces();
debug.nospace() << "QMap(";
for (typename QMap<aKey, aT>::const_iterator it = map.constBegin();
for (typename QMap<Key, T>::const_iterator it = map.constBegin();
it != map.constEnd(); ++it) {
debug << '(' << it.key() << ", " << it.value() << ')';
}
@ -215,12 +215,12 @@ inline QDebug operator<<(QDebug debug, const QMap<aKey, aT> &map)
return debug.maybeSpace();
}
template <class aKey, class aT>
inline QDebug operator<<(QDebug debug, const QHash<aKey, aT> &hash)
template <class Key, class T>
inline QDebug operator<<(QDebug debug, const QHash<Key, T> &hash)
{
const bool oldSetting = debug.autoInsertSpaces();
debug.nospace() << "QHash(";
for (typename QHash<aKey, aT>::const_iterator it = hash.constBegin();
for (typename QHash<Key, T>::const_iterator it = hash.constBegin();
it != hash.constEnd(); ++it)
debug << '(' << it.key() << ", " << it.value() << ')';
debug << ')';
@ -261,7 +261,7 @@ inline QDebug operator<<(QDebug debug, const QContiguousCache<T> &cache)
return debug.maybeSpace();
}
#ifndef QT_NO_QOBJECT
#if !defined(QT_NO_QOBJECT) && !defined(Q_QDOC)
Q_CORE_EXPORT QDebug qt_QMetaEnum_debugOperator(QDebug&, int value, const QMetaObject *meta, const char *name);
Q_CORE_EXPORT QDebug qt_QMetaEnum_flagDebugOperator(QDebug &dbg, quint64 value, const QMetaObject *meta, const char *name);
@ -290,7 +290,7 @@ inline typename QtPrivate::QEnableIf<
!QtPrivate::IsQEnumHelper<T>::Value && !QtPrivate::IsQEnumHelper<QFlags<T> >::Value,
QDebug>::Type
qt_QMetaEnum_flagDebugOperator_helper(QDebug debug, const QFlags<T> &flags)
#else // !QT_NO_QOBJECT
#else // !QT_NO_QOBJECT && !Q_QDOC
template <class T>
inline QDebug qt_QMetaEnum_flagDebugOperator_helper(QDebug debug, const QFlags<T> &flags)
#endif