D
Donos
Hello
I have a Queue which is declared as,
std::queue<unsigned char> m_Queue;
I push data into this queue.
Now i want to take the data out of this queue using Iterator.
I tried declaring the Iterator as,
std::iterator<unsigned char> m_Itr;
But it's not working.
Can anyone tell me how to declare an Iterator and take data out of a
Queue?
Thanks.
I have a Queue which is declared as,
std::queue<unsigned char> m_Queue;
I push data into this queue.
Now i want to take the data out of this queue using Iterator.
I tried declaring the Iterator as,
std::iterator<unsigned char> m_Itr;
But it's not working.
Can anyone tell me how to declare an Iterator and take data out of a
Queue?
Thanks.