summaryrefslogtreecommitdiffstats
path: root/include/raul/Deletable.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/raul/Deletable.hpp')
-rw-r--r--include/raul/Deletable.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/raul/Deletable.hpp b/include/raul/Deletable.hpp
index 9b80d54..191daaf 100644
--- a/include/raul/Deletable.hpp
+++ b/include/raul/Deletable.hpp
@@ -1,4 +1,3 @@
-
/*
This file is part of Raul.
Copyright 2007-2013 David Robillard <http://drobilla.net>
@@ -29,6 +28,12 @@ class Deletable
public:
Deletable() = default;
+ Deletable(const Deletable&) = default;
+ Deletable& operator=(const Deletable&) = default;
+
+ Deletable(Deletable&&) = default;
+ Deletable& operator=(Deletable&&) = default;
+
virtual ~Deletable() = default;
};