Is it possible to implement a recursive POD wrapper in C++?
I have a class to wrap POD struct types, but I’m having trouble when a POD struct has another POD inside, because my wrapper class only stores the POD as it is, using composition.
I have a class to wrap POD struct types, but I’m having trouble when a POD struct has another POD inside, because my wrapper class only stores the POD as it is, using composition.