2 Dec
2005
2 Dec
'05
6:09 p.m.
On Thu, 01 Dec 2005 18:16:21 -0200, Bruno MartÃnez wrote:
I don't think it's psossible, because std::stack doesn't expose enough information. Either use deque/vector directly or inherit from std::stack to get access to the inner deque.
Regards, Bruno
Inheriting from the std::stack is horrible idea. It is not portable. Not to mention that stack lacks a virtual destructor. Nathan Moore