memory.h 115 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 #ifndef MEMORY_H #define MEMORY_H namespace my_std { template<class T> class unique_ptr { T t; }; } #endif