Exemplo n.º 1
0
int main()
{
	MyQueue q;
	q.Push(1);
	q.Push(2);
	q.Push(3);
	q.Push(3);
	
	while(q.Empty() == false)
	{
		int v = q.PopFront();
		cout << v << " ";
	}
	cout << endl;
}