diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_queue.html --- a/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_queue.html Tue Mar 30 11:56:28 2010 +0100 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_queue.html Tue Mar 30 16:16:55 2010 +0100 @@ -1,199 +1,193 @@ - -
-Public Member Functions | ||||||||
void | Insert () | |||||||
void | Remove () | |||||||
TBool | IsEmpty () | |||||||
void | ConstructL () | |||||||
void | GetTokens (RArray< TInt > &aArray) | |||||||
~CQueue () | ||||||||
Static Public Member Functions | ||||||||
static CQueue * | NewL () |
Public Member Functions | |
void | Insert () |
void | Remove () |
TBool | IsEmpty () |
void | ConstructL () |
void | GetTokens (RArray< TInt > &aArray) |
~CQueue () | |
Static Public Member Functions | |
static CQueue * | NewL () |
+
A wrapper class that implements the queue of integer tokens. It owns a handle to an integer array. This array is treated as a queue of tokens. It provides functions to insert, delete and display elements in the queue. It also owns a handle to the condition variable and a mutex variable.
+Definition at line 35 of file queue.h.
-Definition at line 35 of file queue.h.
+CQueue::~CQueue | +CQueue::~CQueue | ( | -+ | ) | -+ |
-
void CQueue::Insert | +void CQueue::Insert | ( | -+ | ) | -+ |
void CQueue::Remove | +void CQueue::Remove | ( | -+ | ) | -+ |
TBool CQueue::IsEmpty | +TBool CQueue::IsEmpty | ( | -+ | ) | -+ |
Checks if the queue has at least one element.
+-Checks if the queue has at least one element.
void CQueue::ConstructL | +void CQueue::ConstructL | ( | -+ | ) | -+ |
void CQueue::GetTokens | +void CQueue::GetTokens | ( | RArray< TInt > & | -aArray | +aArray | ) | -+ |
-Constructs an array of elements present in the CQueue::iArray queue.
-