1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-30 07:29:29 +02:00

Disallow copy of Sequence

This commit is contained in:
Paul Licameli 2016-11-24 17:17:06 -05:00
parent b019e28a53
commit d174099c3d

View File

@ -73,6 +73,10 @@ class PROFILE_DLL_API Sequence final : public XMLTagHandler{
// from one project to another...
Sequence(const Sequence &orig, const std::shared_ptr<DirManager> &projDirManager);
// Sequence cannot be copied without specifying a DirManager
Sequence(const Sequence&) PROHIBITED;
Sequence& operator= (const Sequence&) PROHIBITED;
~Sequence();
//