diff options
Diffstat (limited to 'src/PatchagePort.hpp')
-rw-r--r-- | src/PatchagePort.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp index 8811feb..b790f0d 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -60,6 +60,12 @@ public: signal_event().connect(sigc::mem_fun(this, &PatchagePort::on_event)); } + PatchagePort(const PatchagePort&) = delete; + PatchagePort& operator=(const PatchagePort&) = delete; + + PatchagePort(PatchagePort&&) = delete; + PatchagePort& operator=(PatchagePort&&) = delete; + ~PatchagePort() override = default; /** Returns the full name of this port, as "modulename:portname" */ |