dn-m / MusicXML

Implementation of the musicXML specification in Swift
MIT License
74 stars 20 forks source link

Implement Ties struct #42

Closed jsbean closed 5 years ago

jsbean commented 5 years ago

A Normal note may have 0, 1, or 2 <tie> elements.

We should represent this as a struct with two optional fields:

struct Ties {
    let start: Tie?
    let stop: Tie?
}

and add a ties property to Note.Normal.

DJBen commented 5 years ago

Can we close this?

jsbean commented 5 years ago

Sure thing!