C++ Classes
A C++ class is like a C struct, but with many extra features that we’ll be gradually learning
The most basic feature of a class is that functions -- as well as data -- can be members of a class
A function that is part of a class is called a “member function”
Member functions have access to all data that is also part of the class