23.2.1 OEReadMDLFile

bool MyReadMDLMolecule(oemolistream &ifs, OEMolBase &mol)
{
  mol.Clear();
  if (OEReadMDLFile(ifs,mol))
  {
    OEFindRingAtomsAndBonds(mol);
    OEAssignAromaticFlags(mol);
    return true;
  }
  mol.Clear();
  return false;
}