mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 08:29:27 +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...
|
// from one project to another...
|
||||||
Sequence(const Sequence &orig, const std::shared_ptr<DirManager> &projDirManager);
|
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();
|
~Sequence();
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user