Skip to content

Commit

Permalink
add support for end barlines
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed Sep 2, 2024
1 parent 36a02da commit 6055053
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/iovolpiano.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@ bool VolpianoInput::Import(const std::string &volpiano)
dbl->SetForm(BARRENDITION_dbl);
layer->AddChild(dbl);
}
else if (ch == '5') {
BarLine *end = new BarLine();
end->SetForm(BARRENDITION_end);
layer->AddChild(end);
}
else if (ch == '6') {
// not supported yet
}
else if (ch == '7') {
BarLine *takt = new BarLine();
takt->SetMethod(BARMETHOD_takt);
Expand Down

0 comments on commit 6055053

Please sign in to comment.