summaryrefslogtreecommitdiffstats
path: root/src/AlsaDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AlsaDriver.hpp')
-rw-r--r--src/AlsaDriver.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/AlsaDriver.hpp b/src/AlsaDriver.hpp
index 92c303f..2af3553 100644
--- a/src/AlsaDriver.hpp
+++ b/src/AlsaDriver.hpp
@@ -39,6 +39,12 @@ class AlsaDriver : public Driver
public:
explicit AlsaDriver(Patchage* app);
+ AlsaDriver(const AlsaDriver&) = delete;
+ AlsaDriver& operator=(const AlsaDriver&) = delete;
+
+ AlsaDriver(AlsaDriver&&) = delete;
+ AlsaDriver& operator=(AlsaDriver&&) = delete;
+
~AlsaDriver() override;
void attach(bool launch_daemon) override;