The document discusses several key concepts in C++ classes including:
1. Friend classes allow one class to access the private members of another class.
2. Inline functions expand the function code in place rather than calling the function.
3. Parameterized constructors allow passing arguments to initialize object properties.
4. Static class members are shared across all objects rather than each object having its own copy.