diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/ntqdatastream.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqdatastream.html')
-rw-r--r-- | doc/html/ntqdatastream.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/ntqdatastream.html b/doc/html/ntqdatastream.html index 0cea75757..5808241b5 100644 --- a/doc/html/ntqdatastream.html +++ b/doc/html/ntqdatastream.html @@ -121,14 +121,14 @@ data to. The <a href="ntqfile.html">TQFile</a> class is an example of an IO devi <a href="ntqfile.html">TQFile</a> file( "file.dat" ); file.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_ReadOnly</a> ); TQDataStream stream( &file ); // read the data serialized from the file - <a href="ntqstring.html">TQString</a> str; + <a href="tqstring.html">TQString</a> str; TQ_INT32 a; stream >> str >> a; // extract "the answer is" and 42 </pre> <p> Each item written to the stream is written in a predefined binary format that varies depending on the item's type. Supported TQt -types include <a href="ntqbrush.html">TQBrush</a>, <a href="ntqcolor.html">TQColor</a>, <a href="ntqdatetime.html">TQDateTime</a>, <a href="ntqfont.html">TQFont</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="ntqstring.html">TQString</a>, +types include <a href="ntqbrush.html">TQBrush</a>, <a href="ntqcolor.html">TQColor</a>, <a href="ntqdatetime.html">TQDateTime</a>, <a href="ntqfont.html">TQFont</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="tqstring.html">TQString</a>, <a href="ntqvariant.html">TQVariant</a> and many others. For the complete list of all TQt types supporting data streaming see the <a href="datastreamformat.html">Format of the TQDataStream operators</a>. <p> For integers it is best to always cast to a TQt integer type for |