src/corelib/tools/qstringlist.h File Reference

#include <QtCore/qalgorithms.h>
#include <QtCore/qdatastream.h>
#include <QtCore/qlist.h>
#include <QtCore/qregexp.h>
#include <QtCore/qstring.h>
#include <QtCore/qstringmatcher.h>

Include dependency graph for qstringlist.h:

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

Go to the source code of this file.

Namespaces

namespace  QtPrivate

Classes

class  QStringList
 The QStringList class provides a list of strings. More...

Typedefs

typedef QListIterator< QStringQStringListIterator
typedef QMutableListIterator<
QString
QMutableStringListIterator

Functions

void QtPrivate::QStringList_sort (QStringList *that)
QString QtPrivate::QStringList_join (const QStringList *that, const QString &sep)
QStringList QtPrivate::QStringList_filter (const QStringList *that, const QString &str, Qt::CaseSensitivity cs)
QBool QtPrivate::QStringList_contains (const QStringList *that, const QString &str, Qt::CaseSensitivity cs)
void QtPrivate::QStringList_replaceInStrings (QStringList *that, const QString &before, const QString &after, Qt::CaseSensitivity cs)
void QtPrivate::QStringList_replaceInStrings (QStringList *that, const QRegExp &rx, const QString &after)
QStringList QtPrivate::QStringList_filter (const QStringList *that, const QRegExp &rx)
int QtPrivate::QStringList_indexOf (const QStringList *that, const QRegExp &rx, int from)
int QtPrivate::QStringList_lastIndexOf (const QStringList *that, const QRegExp &rx, int from)
QDataStreamoperator>> (QDataStream &in, QStringList &list)
QDataStreamoperator<< (QDataStream &out, const QStringList &list)


Typedef Documentation

typedef QMutableListIterator<QString> QMutableStringListIterator [related]

Definition at line 44 of file qstringlist.h.

typedef QListIterator<QString> QStringListIterator [related]

Definition at line 41 of file qstringlist.h.


Function Documentation

QDataStream& operator<< ( QDataStream out,
const QStringList list 
) [related]

Definition at line 208 of file qstringlist.h.

00209 {
00210     return operator<<(out, static_cast<const QList<QString> &>(list));
00211 }

QDataStream& operator>> ( QDataStream in,
QStringList list 
) [related]

Definition at line 204 of file qstringlist.h.

References QUrl::operator>>().

00205 {
00206     return operator>>(in, static_cast<QList<QString> &>(list));
00207 }

Here is the call graph for this function:


Generated on Thu Mar 15 13:13:51 2007 for Qt 4.2 User's Guide by  doxygen 1.5.1