Example #1
0
 public void advance()
 {
     m_current = m_current.next();
 }
Example #2
0
 // construction/destruction
 public auto_iterator(_ElementType ptr)
 {
     m_current = ptr;
 }