About
Contact
QtCreator
KDevelop
Solarized
1
#
ifndef
MEMORY_H
2
#define
MEMORY_H
3
namespace
my_std
{
4
template
<
class
T>
class
unique_ptr
{
5
T
t
;
6
};
7
}
8
#
endif
9