summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqdatastream.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/html/ntqdatastream.html
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class 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.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/ntqdatastream.html b/doc/html/ntqdatastream.html
index 7b1426b37..74197d68d 100644
--- a/doc/html/ntqdatastream.html
+++ b/doc/html/ntqdatastream.html
@@ -243,7 +243,7 @@ TQDataStream does not have any means to handle or recover from
short-reads.
<p> <p>See also <a href="#setDevice">setDevice</a>() and <a href="#device">device</a>().
-<h3 class=fn><a name="TQDataStream-3"></a>TQDataStream::TQDataStream ( <a href="qbytearray.html">TQByteArray</a>&nbsp;a, int&nbsp;mode )
+<h3 class=fn><a name="TQDataStream-3"></a>TQDataStream::TQDataStream ( <a href="tqbytearray.html">TQByteArray</a>&nbsp;a, int&nbsp;mode )
</h3>
Constructs a data stream that operates on a byte array, <em>a</em>,
through an internal <a href="ntqbuffer.html">TQBuffer</a> device. The <em>mode</em> is a
@@ -251,20 +251,20 @@ through an internal <a href="ntqbuffer.html">TQBuffer</a> device. The <em>mode</
<p> Example:
<pre>
static char bindata[] = { 231, 1, 44, ... };
- <a href="qbytearray.html">TQByteArray</a> a;
- a.<a href="ntqmemarray.html#setRawData">setRawData</a>( bindata, sizeof(bindata) ); // a points to bindata
+ <a href="tqbytearray.html">TQByteArray</a> a;
+ a.<a href="tqmemarray.html#setRawData">setRawData</a>( bindata, sizeof(bindata) ); // a points to bindata
TQDataStream stream( a, <a href="ntqfile.html#open">IO_ReadOnly</a> ); // open on a's data
stream &gt;&gt; [something]; // read raw bindata
- a.<a href="ntqmemarray.html#resetRawData">resetRawData</a>( bindata, sizeof(bindata) ); // finished
+ a.<a href="tqmemarray.html#resetRawData">resetRawData</a>( bindata, sizeof(bindata) ); // finished
</pre>
-<p> The <a href="ntqmemarray.html#setRawData">TQByteArray::setRawData</a>() function is not for the inexperienced.
+<p> The <a href="tqmemarray.html#setRawData">TQByteArray::setRawData</a>() function is not for the inexperienced.
<h3 class=fn><a name="~TQDataStream"></a>TQDataStream::~TQDataStream ()<tt> [virtual]</tt>
</h3>
Destroys the data stream.
<p> The destructor will not affect the current IO device, unless it is
-an internal IO device processing a <a href="qbytearray.html">TQByteArray</a> passed in the <em>constructor</em>, in which case the internal IO device is destroyed.
+an internal IO device processing a <a href="tqbytearray.html">TQByteArray</a> passed in the <em>constructor</em>, in which case the internal IO device is destroyed.
<h3 class=fn>bool <a name="atEnd"></a>TQDataStream::atEnd () const
</h3>