From b710db753c92522f9acfbef4a02b440e4178b067 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 28 Mar 2025 01:18:50 +0000 Subject: Add standard special members --- lib/collection.h | 4 ++++ 1 file changed, 4 insertions(+) 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 #include #include +#include #include #include template class Collection { public: + Collection() = default; virtual ~Collection() = default; + DEFAULT_MOVE_NO_COPY(Collection); + using Object = Ptr::element_type; using Objects = std::vector; template using OtherObjects = std::vector; -- cgit v1.2.3