Skip to content

Commit

Permalink
Adding clone methods to TabDurSym and TabGrp
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Feb 7, 2024
1 parent 7ab9a8f commit 5f338fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/vrv/tabdursym.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class TabDurSym : public LayerElement, public StemmedDrawingInterface, public At
///@{
TabDurSym();
virtual ~TabDurSym();
Object *Clone() const override { return new TabDurSym(*this); }
void Reset() override;
std::string GetClassName() const override { return "TabDurSym"; }
///@}
Expand Down
1 change: 1 addition & 0 deletions include/vrv/tabgrp.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class TabGrp : public LayerElement, public ObjectListInterface, public DurationI
///@{
TabGrp();
virtual ~TabGrp();
Object *Clone() const override { return new TabGrp(*this); }
void Reset() override;
std::string GetClassName() const override { return "TabGrp"; }
///@}
Expand Down

0 comments on commit 5f338fe

Please sign in to comment.