コード例 #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);
}