public override void Write(TodoGraphics todo)
 {
     m_writer.WriteStartElement("Todo");
     WriteArea(todo);
     //TODO - I think there's more stuff that should go here.
     m_writer.WriteEndElement();
 }
 public abstract void Write(TodoGraphics todo);