mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Replace boost::noncopyable with C++11 deleted copy constructors
This commit is contained in:
parent
915200699b
commit
2436b4df06
17 changed files with 50 additions and 36 deletions
|
|
@ -31,10 +31,12 @@ namespace ARDOUR
|
|||
{
|
||||
class Speakers;
|
||||
|
||||
class VBAPSpeakers : public boost::noncopyable
|
||||
class VBAPSpeakers
|
||||
{
|
||||
public:
|
||||
VBAPSpeakers (std::shared_ptr<Speakers>);
|
||||
VBAPSpeakers (const VBAPSpeakers&) = delete;
|
||||
VBAPSpeakers& operator= (const VBAPSpeakers&) = delete;
|
||||
|
||||
typedef std::vector<double> dvector;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue