This is a really interesting topic!


  void Node::Remove()
  {
    if (prev)
      prev -> next = next;
    else if (parent)
      parent -> SetContent(null);

    if (next)
      next -> prev = prev;

    parent = null;
  }
#include <stdio.h>

int main(int argc, char **argv)
{
  printf("Hello\n");
  return 0;
}
This is another really interesting topic!


Carbocianina



Last updated: February 08 2012 19:02:58.