Bob/src/headers/common/helperFunctions/ShortHands.h

6 lines
104 B
C++

#pragma once
#include <memory>
#define sptr(T) std::shared_ptr<T>
#define msptr(T) std::make_shared<T>