What is the difference between private
and protected
members in C++ classes?
I understand from best practice conventions that variables and functions which are not called outside the class should be made private
—but looking at my MFC project, MFC seems to favor protected
.
What’s the difference and which should I use?