Loading...
Searching...
No Matches
Go to the documentation of this file.
19#ifndef LOMIRI_UTIL_DEFINESPTRS_H
20#define LOMIRI_UTIL_DEFINESPTRS_H
52#define LOMIRI_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