src/qt3support/tools/q3valuelist.h File Reference

#include <QtCore/qalgorithms.h>
#include <QtCore/qdatastream.h>
#include <QtCore/qlinkedlist.h>
#include <QtCore/qlist.h>
#include <iterator>
#include <list>

Include dependency graph for q3valuelist.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Q3ValueListIterator< T >
class  Q3ValueListConstIterator< T >
class  Q3ValueList< T >

Functions

template<typename T>
Q_OUTOFLINE_TEMPLATE QDataStreamoperator>> (QDataStream &s, Q3ValueList< T > &l)
template<typename T>
Q_OUTOFLINE_TEMPLATE QDataStreamoperator<< (QDataStream &s, const Q3ValueList< T > &l)


Function Documentation

template<typename T>
Q_OUTOFLINE_TEMPLATE QDataStream& operator<< ( QDataStream s,
const Q3ValueList< T > &  l 
)

Definition at line 208 of file q3valuelist.h.

References l, and s.

00209 {
00210     return operator<<(s, static_cast<const QLinkedList<T> &>(l));
00211 }

template<typename T>
Q_OUTOFLINE_TEMPLATE QDataStream& operator>> ( QDataStream s,
Q3ValueList< T > &  l 
)

Definition at line 202 of file q3valuelist.h.

References l, QUrl::operator>>(), and s.

00203 {
00204     return operator>>(s, static_cast<QLinkedList<T> &>(l));
00205 }

Here is the call graph for this function:


Generated on Thu Mar 15 14:08:24 2007 for Qt 4.2 User's Guide by  doxygen 1.5.1