summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqasciicacheiterator.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqasciicacheiterator.3qt')
-rw-r--r--doc/man/man3/tqasciicacheiterator.3qt56
1 files changed, 28 insertions, 28 deletions
diff --git a/doc/man/man3/tqasciicacheiterator.3qt b/doc/man/man3/tqasciicacheiterator.3qt
index a6c84f643..a0ab8dc29 100644
--- a/doc/man/man3/tqasciicacheiterator.3qt
+++ b/doc/man/man3/tqasciicacheiterator.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QAsciiCacheIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQAsciiCacheIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,20 +7,20 @@
.ad l
.nh
.SH NAME
-QAsciiCacheIterator \- Iterator for QAsciiCache collections
+TQAsciiCacheIterator \- Iterator for TQAsciiCache collections
.SH SYNOPSIS
-\fC#include <ntqasciicache.h>\fR
+\fC#include <tqasciicache.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQAsciiCacheIterator\fR ( const QAsciiCache<type> & cache )"
+.BI "\fBTQAsciiCacheIterator\fR ( const TQAsciiCache<type> & cache )"
.br
.ti -1c
-.BI "\fBQAsciiCacheIterator\fR ( const QAsciiCacheIterator<type> & ci )"
+.BI "\fBTQAsciiCacheIterator\fR ( const TQAsciiCacheIterator<type> & ci )"
.br
.ti -1c
-.BI "QAsciiCacheIterator<type> & \fBoperator=\fR ( const QAsciiCacheIterator<type> & ci )"
+.BI "TQAsciiCacheIterator<type> & \fBoperator=\fR ( const TQAsciiCacheIterator<type> & ci )"
.br
.ti -1c
.BI "uint \fBcount\fR () const"
@@ -66,65 +66,65 @@ QAsciiCacheIterator \- Iterator for QAsciiCache collections
.br
.in -1c
.SH DESCRIPTION
-The QAsciiCacheIterator class provides an iterator for QAsciiCache collections.
+The TQAsciiCacheIterator class provides an iterator for TQAsciiCache collections.
.PP
Note that the traversal order is arbitrary; you are not guaranteed any particular order. If new objects are inserted into the cache while the iterator is active, the iterator may or may not see them.
.PP
-Multiple iterators are completely independent, even when they operate on the same QAsciiCache. QAsciiCache updates all iterators that refer an item when that item is removed.
+Multiple iterators are completely independent, even when they operate on the same TQAsciiCache. TQAsciiCache updates all iterators that refer an item when that item is removed.
.PP
-QAsciiCacheIterator provides an operator++() and an operator+=() to traverse the cache; current() and currentKey() to access the current cache item and its key. It also provides atFirst() and atLast(), which return TRUE if the iterator points to the first or last item in the cache respectively. The isEmpty() function returns TRUE if the cache is empty; and count() returns the number of items in the cache.
+TQAsciiCacheIterator provides an operator++() and an operator+=() to traverse the cache; current() and currentKey() to access the current cache item and its key. It also provides atFirst() and atLast(), which return TRUE if the iterator points to the first or last item in the cache respectively. The isEmpty() function returns TRUE if the cache is empty; and count() returns the number of items in the cache.
.PP
Note that atFirst() and atLast() refer to the iterator's arbitrary ordering, not to the cache's internal least recently used list.
.PP
-See also QAsciiCache, Collection Classes, and Non-GUI Classes.
+See also TQAsciiCache, Collection Classes, and Non-GUI Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QAsciiCacheIterator::QAsciiCacheIterator ( const QAsciiCache<type> & cache )"
+.SH "TQAsciiCacheIterator::TQAsciiCacheIterator ( const TQAsciiCache<type> & cache )"
Constructs an iterator for \fIcache\fR. The current iterator item is set to point to the first item in the \fIcache\fR.
-.SH "QAsciiCacheIterator::QAsciiCacheIterator ( const QAsciiCacheIterator<type> & ci )"
+.SH "TQAsciiCacheIterator::TQAsciiCacheIterator ( const TQAsciiCacheIterator<type> & ci )"
Constructs an iterator for the same cache as \fIci\fR. The new iterator starts at the same item as ci.current() but moves independently from there on.
-.SH "bool QAsciiCacheIterator::atFirst () const"
+.SH "bool TQAsciiCacheIterator::atFirst () const"
Returns TRUE if the iterator points to the first item in the cache; otherwise returns FALSE. Note that this refers to the iterator's arbitrary ordering, not to the cache's internal least recently used list.
.PP
See also toFirst() and atLast().
-.SH "bool QAsciiCacheIterator::atLast () const"
+.SH "bool TQAsciiCacheIterator::atLast () const"
Returns TRUE if the iterator points to the last item in the cache; otherwise returns FALSE. Note that this refers to the iterator's arbitrary ordering, not to the cache's internal least recently used list.
.PP
See also toLast() and atFirst().
-.SH "uint QAsciiCacheIterator::count () const"
+.SH "uint TQAsciiCacheIterator::count () const"
Returns the number of items in the cache over which this iterator operates.
.PP
See also isEmpty().
-.SH "type * QAsciiCacheIterator::current () const"
+.SH "type * TQAsciiCacheIterator::current () const"
Returns a pointer to the current iterator item.
-.SH "const char * QAsciiCacheIterator::currentKey () const"
+.SH "const char * TQAsciiCacheIterator::currentKey () const"
Returns the key for the current iterator item.
-.SH "bool QAsciiCacheIterator::isEmpty () const"
+.SH "bool TQAsciiCacheIterator::isEmpty () const"
Returns TRUE if the cache is empty, i.e. count() == 0; otherwise returns FALSE.
.PP
See also count().
-.SH "QAsciiCacheIterator::operator type * () const"
+.SH "TQAsciiCacheIterator::operator type * () const"
Cast operator. Returns a pointer to the current iterator item. Same as current().
-.SH "type * QAsciiCacheIterator::operator() ()"
+.SH "type * TQAsciiCacheIterator::operator() ()"
Makes the succeeding item current and returns the original current item.
.PP
If the current iterator item was the last item in the cache or if it was 0, 0 is returned.
-.SH "type * QAsciiCacheIterator::operator++ ()"
+.SH "type * TQAsciiCacheIterator::operator++ ()"
Prefix ++ makes the iterator point to the item just after current(), and makes that the new current item for the iterator. If current() was the last item, operator++() returns 0.
-.SH "type * QAsciiCacheIterator::operator+= ( uint jump )"
+.SH "type * TQAsciiCacheIterator::operator+= ( uint jump )"
Returns the item \fIjump\fR positions after the current item, or 0 if it is beyond the last item. Makes this the current item.
-.SH "type * QAsciiCacheIterator::operator-- ()"
+.SH "type * TQAsciiCacheIterator::operator-- ()"
Prefix -- makes the iterator point to the item just before current(), and makes that the new current item for the iterator. If current() was the first item, operator--() returns 0.
-.SH "type * QAsciiCacheIterator::operator-= ( uint jump )"
+.SH "type * TQAsciiCacheIterator::operator-= ( uint jump )"
Returns the item \fIjump\fR positions before the current item, or 0 if it is before the first item. Makes this the current item.
-.SH "QAsciiCacheIterator<type> & QAsciiCacheIterator::operator= ( const QAsciiCacheIterator<type> & ci )"
+.SH "TQAsciiCacheIterator<type> & TQAsciiCacheIterator::operator= ( const TQAsciiCacheIterator<type> & ci )"
Makes this an iterator for the same cache as \fIci\fR. The new iterator starts at the same item as ci.current(), but moves independently thereafter.
-.SH "type * QAsciiCacheIterator::toFirst ()"
+.SH "type * TQAsciiCacheIterator::toFirst ()"
Sets the iterator to point to the first item in the cache and returns a pointer to the item.
.PP
Sets the iterator to 0 and returns 0 if the cache is empty.
.PP
See also toLast() and isEmpty().
-.SH "type * QAsciiCacheIterator::toLast ()"
+.SH "type * TQAsciiCacheIterator::toLast ()"
Sets the iterator to point to the last item in the cache and returns a pointer to the item.
.PP
Sets the iterator to 0 and returns 0 if the cache is empty.
@@ -132,7 +132,7 @@ Sets the iterator to 0 and returns 0 if the cache is empty.
See also isEmpty().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qasciicacheiterator.html
+.BR http://doc.trolltech.com/tqasciicacheiterator.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the