Member Functions
A member function is a C++ Functions that is a member of a class.
Typically these are public
functions so that the user can call them as methods of the class instances. There are however private member functions that do some work in the background that the user doesn't even know exist.
Children