cpp-template/wtf.hpp

16 lines
132 B
C++
Raw Normal View History

2022-10-08 21:01:53 +02:00
#ifndef __WTF__
#define __WTF__
template <typename T>
class Wtf
{
T & test;
public:
Wtf(T & test);
T & getTest();
};
#endif