cpp-template/wtf.hpp

16 lines
132 B
C++

#ifndef __WTF__
#define __WTF__
template <typename T>
class Wtf
{
T & test;
public:
Wtf(T & test);
T & getTest();
};
#endif