Loading...
Searching...
No Matches
Go to the documentation of this file.
19#ifndef UNITY_UTIL_DEFINESPTRS_H
20#define UNITY_UTIL_DEFINESPTRS_H
52#define UNITY_DEFINES_PTRS(classname) \
53 typedef std::shared_ptr<classname> SPtr; \
54 typedef std::shared_ptr<classname const> SCPtr; \
55 typedef std::unique_ptr<classname> UPtr; \
56 typedef std::unique_ptr<classname const> UCPtr