summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_corelib_tools_qqueue.cpp
blob: da4c4a644c107804dc1afe5a075b0d5b869ab266 (plain)
1
2
3
4
5
6
7
8
//! [0]
QQueue<int> queue;
queue.enqueue(1);
queue.enqueue(2);
queue.enqueue(3);
while (!queue.isEmpty())
    cout << queue.dequeue() << endl;
//! [0]