File: qqueue.html

package info (click to toggle)
qt1g 1%3A1.45-1.1
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 17,436 kB
  • ctags: 20,174
  • sloc: cpp: 89,153; yacc: 1,273; ansic: 692; makefile: 479; lex: 326; sh: 150; perl: 94
file content (97 lines) | stat: -rw-r--r-- 5,510 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta name="robots" content="noindex,noarchive">
<title>Qt Toolkit - QQueue Class</title><style type="text/css"><!--
h3.fn,span.fn { margin-left: 15%; text-indent: -15%; }
a:link { text-decoration: none; }
--></style>
</head><body bgcolor="#ffffff">

<a href=index.html><img width=122 height=65 src=qtlogo.jpg alt="Qt logo" align=left border=0></a>
<center><img src=dochead.gif width=472 height=27></center>
<br clear=all>

<h1 align=center>QQueue Class Reference</h1><br clear="all">
<p>
The QQueue class is a template class that provides a queue.
<a href="#details">More...</a>
<p>
<code>#include &lt;<a href="qqueue-h.html">qqueue.h</a>&gt;</code>
<p><a href="qqueue-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li><span class="fn"><a href="qqueue.html#a0"><strong>QQueue</strong></a>()</span>
<li><span class="fn"><a href="qqueue.html#a1"><strong>QQueue</strong></a>(constQQueue&lt;type&gt;&amp;queue)</span>
<li><span class="fn"><a href="qqueue.html#a2"><strong>~QQueue</strong></a>()</span>
<li><span class="fn">QQueue&lt;type&gt;&amp;<a href="qqueue.html#a3"><strong>operator=</strong></a>(constQQueue&lt;type&gt;&amp;queue)</span>
<li><span class="fn">bool<a href="qcollection.html#a0"><strong>autoDelete</strong></a>()const</span>
<li><span class="fn">void<a href="qcollection.html#a1"><strong>setAutoDelete</strong></a>(boolenable)</span>
<li><span class="fn">virtualuint<a href="qglist.html#a0"><strong>count</strong></a>()const</span>
<li><span class="fn">bool<a href="qqueue.html#a7"><strong>isEmpty</strong></a>()const</span>
<li><span class="fn">void<a href="qqueue.html#a8"><strong>enqueue</strong></a>(consttype*d)</span>
<li><span class="fn">type*<a href="qqueue.html#a9"><strong>dequeue</strong></a>()</span>
<li><span class="fn">bool<a href="qqueue.html#b0"><strong>remove</strong></a>()</span>
<li><span class="fn">virtualvoid<a href="qglist.html#c2"><strong>clear</strong></a>()</span>
<li><span class="fn">type*<a href="qqueue.html#b2"><strong>head</strong></a>()const</span>
<li><span class="fn">operator<a href=qqueue.html#b5><strong>type*</strong></a>()const</span>
<li><span class="fn">type*<a href="qqueue.html#b3"><strong>current</strong></a>()const</span>
</ul>
<hr><h2><a name="details"></a>Detailed Description</h2>
The QQueue class is a template class that provides a queue.
<p>
QQueue is implemented as both a template and a macro class. Define a
template instance QQueue&lt;X&gt; to create a queue that operates on
pointers to X, or X*.
<p>A stack is a collection that can be used to enqueue and dequeue items.
<p>See also:  <a href="collection.html">Collection Classes</a>

<hr><h2>Member Function Documentation</h2>
<h3 class="fn"><a name="a0"></a>QQueue::QQueue()</h3>
<p>Creates an empty queue.
<h3 class="fn"><a name="a1"></a>QQueue::QQueue(constQQueue&lt;type&gt;&amp;queue)</h3>
<p>Creates a queue from another.
<p>Only the pointers are copied.
<h3 class="fn"><a name="a2"></a>QQueue::~QQueue()</h3>
<p>Destroys the list.  Items in the list are destroyed if <a href="qcollection.html#a0">autoDelete</a>() is TRUE.
<h3 class="fn"><a name="b5"></a>QQueue::operatortype*()const</h3>
<p>Returns a reference to the first item in the queue.  The queue is
not changed.
<h3 class="fn">type*<a name="b3"></a>QQueue::current()const</h3>
<p>Returns a reference to the first item in the queue.  The queue is
not changed.
<h3 class="fn">type*<a name="a9"></a>QQueue::dequeue()</h3>
<p>Removes the front item from the queue.  Last in, last out.
<h3 class="fn">void<a name="a8"></a>QQueue::enqueue(consttype*d)</h3>
<p>Adds an item to the queue.  Last in, last out.
<h3 class="fn">type*<a name="b2"></a>QQueue::head()const</h3>
<p>Returns a reference to the first item in the queue.  The queue is
not changed.
<h3 class="fn">bool<a name="a7"></a>QQueue::isEmpty()const</h3>
<p>Returns TRUE if there are no items to be <a href="qqueue.html#a9">dequeued</a>
<h3 class="fn">QQueue&lt;type&gt;&amp;<a name="a3"></a>QQueue::operator=(constQQueue&lt;type&gt;&amp;queue)</h3>
<p>Assigns <em>queue</em> to this queue and returns a reference to this queue.
<p>This queue is first cleared, then each item in <em>queue</em> is
enqueued to this queue.  Only the pointers are copied (shallow copy).
<h3 class="fn">bool<a name="b0"></a>QQueue::remove()</h3>
<p>Removes the front item from the queue.  Last in, last out.
The item is deleted if <a href="qcollection.html#a0">autoDelete</a>() is TRUE.
Returns TRUE if there was an item to remove.
<hr><p>
Search the documentation, FAQ, qt-interest archive and more (uses 
<a href="http://www.troll.no">www.troll.no</a>):<br>
<form method=post action="http://www.troll.no/search.cgi">
<input type=hidden name="version" value="1.44"><nobr>
<input size="50" name="search"><input type=submit value="Search">
</nobr></form><hr><p>
This file is part of the <a href="index.html">Qt toolkit</a>,
copyright &copy; 1995-99
<a href="troll.html">Troll Tech</a>, all rights reserved.
<p>
It was generated from the following files:
<ul>
<li>qqueue.h: 1998/08/27
<li>qqueue.doc: 1997/08/06
</ul>
<p><address><hr><div align="center">
<table width="100%" cellspacing="0" border="0"><tr>
<td>Copyright  1999 Troll Tech<td><a href="trademarks.html">Trademarks</a>
<td align="right"><div align="right">Qt version 1.45</div>
</table></div></address></body></html>