#ifndef WRAP_MEMORY_HPP #define WRAP_MEMORY_HPP #include "two-mallocs.hpp" #include namespace eng { template> using unique_ptr = std::unique_ptr; template using shared_ptr = std::shared_ptr; } // namespace eng namespace drv { template> using unique_ptr = std::unique_ptr; template using shared_ptr = std::shared_ptr; } // namespace drv #endif // WRAP_MEMORY_HPP