9 std::shared_ptr<AnnotationBranch>
10 AnnotationTrack::branch(
const std::shared_ptr<Workspace> &ws,
bool create) {
11 std::string name =
"";
13 name = ws->player->fileName();
15 for (
auto &branch : branches()) {
16 if (branch->name() == name) {
21 auto branch = std::make_shared<AnnotationBranch>();
22 branch->name() = name;
23 branches().push_back(branch);