From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- doc/html/qtextistream.html | 91 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 doc/html/qtextistream.html (limited to 'doc/html/qtextistream.html') diff --git a/doc/html/qtextistream.html b/doc/html/qtextistream.html new file mode 100644 index 0000000..ea3b97a --- /dev/null +++ b/doc/html/qtextistream.html @@ -0,0 +1,91 @@ + + + + + +QTextIStream Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

QTextIStream Class Reference

+ +

The QTextIStream class is a convenience class for input streams. +More... +

All the functions in this class are reentrant when Qt is built with thread support.

+

#include <qtextstream.h> +

Inherits QTextStream. +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + + +The QTextIStream class is a convenience class for input streams. +

+ +

This class provides a shorthand for creating simple input +QTextStreams without having to pass a mode argument to the +constructor. +

This class makes it easy, for example, to write things like this: +

+    QString data = "123 456";
+    int a, b;
+    QTextIStream(&data) >> a >> b;
+    
+ +

See also QTextOStream, Input/Output and Networking, and Text Related Classes. + +


Member Function Documentation

+

QTextIStream::QTextIStream ( const QString * s ) +

+ +

Constructs a stream to read from the string s. + +

QTextIStream::QTextIStream ( QByteArray ba ) +

+ +

Constructs a stream to read from the array ba. + +

QTextIStream::QTextIStream ( FILE * f ) +

+ +

Constructs a stream to read from the file f. + + +


+This file is part of the Qt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
Qt 3.3.8
+
+ -- cgit v1.2.3