What distinguishes C++ classes' private and protected members?
I know that variables and functions should be kept private if they aren't used outside of the class, yet MFC seems to favour protected when I look at my MFC code.
Which should I use and what is the difference?