#pragma once template class Reference { private: T *obj; public: T *get() { return obj; } Reference(T *i) { obj = i; } };