#include <FifoQueue.h> [code]
Inherits Protocols::Generics::DataQueue.
Inheritance diagram for Protocols::Generics::FifoQueue:


Definition at line 35 of file FifoQueue.h.
Public Member Functions | |
| FifoQueue () | |
| bool | isEmpty () const |
| Tells whether any elements are queued or not. | |
| void | enqueue (const Data &) |
| Adds a Data object to the queue. | |
| Data | next () const |
| void | dequeue () |
| Drops the Data objects that is next() in the queue. | |
Private Member Functions | |
| FifoQueue (const FifoQueue &) | |
| FifoQueue & | operator= (const FifoQueue &) |
Private Attributes | |
| QList< Data > | queue |
|
|
|
|
|
Definition at line 27 of file FifoQueue.cpp. |
|
|
Drops the Data objects that is next() in the queue.
Implements Protocols::Generics::DataQueue. Definition at line 48 of file FifoQueue.cpp. |
|
|
Adds a Data object to the queue.
Implements Protocols::Generics::DataQueue. Definition at line 37 of file FifoQueue.cpp. |
|
|
Tells whether any elements are queued or not.
Implements Protocols::Generics::DataQueue. Definition at line 32 of file FifoQueue.cpp. |
|
|
Implements Protocols::Generics::DataQueue. Definition at line 42 of file FifoQueue.cpp. |
|
|
|
|
|
Definition at line 48 of file FifoQueue.h. |