summaryrefslogtreecommitdiffstats
path: root/src/Driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Driver.hpp')
-rw-r--r--src/Driver.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Driver.hpp b/src/Driver.hpp
index 58f6c4d..b0373af 100644
--- a/src/Driver.hpp
+++ b/src/Driver.hpp
@@ -28,6 +28,14 @@ class PatchageCanvas;
class Driver
{
public:
+ Driver() = default;
+
+ Driver(const Driver&) = delete;
+ Driver& operator=(const Driver&) = delete;
+
+ Driver(Driver&&) = delete;
+ Driver& operator=(Driver&&) = delete;
+
virtual ~Driver() = default;
virtual void process_events(Patchage* app) = 0;