From c6f3440c88280da8b469b89c0ce866f2fe5d3867 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 13 Oct 2022 20:40:30 +0100 Subject: Add ConstTypeDefs as a const only variant of StdTypeDefs --- lib/stdTypeDefs.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/stdTypeDefs.hpp b/lib/stdTypeDefs.hpp index 2055226..8d17c33 100644 --- a/lib/stdTypeDefs.hpp +++ b/lib/stdTypeDefs.hpp @@ -11,3 +11,8 @@ template struct StdTypeDefs { using CCollection = std::vector; using WCollection = std::vector; }; + +template struct ConstTypeDefs { + using Ptr = std::shared_ptr; + using Collection = std::vector; +}; -- cgit v1.2.3