2
votes
Zeroing out a struct in the constructor
You can use a template:
template <class T>
class selfzero : public T
{
public:
selfzero() {
ZeroMemory( this, sizeof( selfzero<T> ));
};
};
…
