summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/collection.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/collection.h b/lib/collection.h
index 5f39e71..91a36c2 100644
--- a/lib/collection.h
+++ b/lib/collection.h
@@ -3,13 +3,17 @@
#include <algorithm>
#include <functional>
#include <memory>
+#include <special_members.h>
#include <type_traits>
#include <vector>
template<typename Ptr, typename... Others> class Collection {
public:
+ Collection() = default;
virtual ~Collection() = default;
+ DEFAULT_MOVE_NO_COPY(Collection);
+
using Object = Ptr::element_type;
using Objects = std::vector<Ptr>;
template<typename T> using OtherObjects = std::vector<T *>;