Exemplo n.º 1
0
void WindowsList::push_front(WindowsList::Node * node)
{
   Iterator it = begin();
   it.InsertBefore(node);
}
Exemplo n.º 2
0
void WindowsList::push_back(WindowsList::Node * node)
{
   Iterator it = end();
   it.InsertBefore(node);
}