void Tremolo::write(Xml& xml) const { xml.stag(name()); xml.tag("subtype", tremoloTypeName()); Element::writeProperties(xml); xml.etag(); }
void Tremolo::write(XmlWriter& xml) const { if (!xml.canWrite(this)) return; xml.stag(name()); xml.tag("subtype", tremoloTypeName()); Element::writeProperties(xml); xml.etag(); }