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:
parent
b019e28a53
commit
d174099c3d
@ -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();
|
||||
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user