void ON_3dmNotes::Dump(ON_TextLog& dump) const
{
    const wchar_t* s = m_notes;
    if ( s )
        dump.PrintWrappedText(s);
    dump.Print("\n");
}
void ON_3dmNotes::Dump(ON_TextLog& dump) const
{
  const wchar_t* s = static_cast< const wchar_t* >(m_notes);
  if ( s )
    dump.PrintWrappedText(s);
  dump.Print("\n");
}