From fcca8bc835db65ac170d1148d52a815df8838d53 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 22 Mar 2025 12:17:57 +0000 Subject: Invert how shared/unique is specified for Collection Template param is a pointer now, typedefs added for ease. --- lib/collection.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/collection.h b/lib/collection.h index 6802bcb..2deefb9 100644 --- a/lib/collection.h +++ b/lib/collection.h @@ -6,11 +6,11 @@ #include #include -template class Collection { +template class Collection { public: virtual ~Collection() = default; - using Ptr = std::conditional_t, std::unique_ptr>; + using Object = Ptr::element_type; using Objects = std::vector; Objects objects; @@ -19,7 +19,7 @@ public: create(Params &&... params) requires std::is_base_of_v { - if constexpr (shared) { + if constexpr (requires(Ptr ptr) { ptr = std::make_shared(std::forward(params)...); }) { auto obj = std::make_shared(std::forward(params)...); objects.emplace_back(obj); return obj; @@ -129,3 +129,6 @@ protected: }); } }; + +template using SharedCollection = Collection>; +template using UniqueCollection = Collection>; -- cgit v1.2.3