From b11139145aea75465f60d6cc311aa23f27a83814 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 13 Oct 2022 20:25:09 +0100 Subject: Inheritable of standard typedefs --- lib/stdTypeDefs.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/stdTypeDefs.hpp (limited to 'lib') diff --git a/lib/stdTypeDefs.hpp b/lib/stdTypeDefs.hpp new file mode 100644 index 0000000..2055226 --- /dev/null +++ b/lib/stdTypeDefs.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include +#include + +template struct StdTypeDefs { + using Ptr = std::shared_ptr; + using CPtr = std::shared_ptr; + using WPtr = std::weak_ptr; + using Collection = std::vector; + using CCollection = std::vector; + using WCollection = std::vector; +}; -- cgit v1.2.3