Hi all,
I am reading about non-copyable objects from this source:
Link
I am not able to understand how making the "=" operator for the base class as private is preventing the derived class to make copies. We could just have a public "operator =" in the derived class that can still make the derived class copyable right?
Could anyone please explain this?
Thanks!