예제 #1
0
void WindowsList::push_front(WindowsList::Node * node)
{
   Iterator it = begin();
   it.InsertBefore(node);
}
예제 #2
0
void WindowsList::push_back(WindowsList::Node * node)
{
   Iterator it = end();
   it.InsertBefore(node);
}