#include #include "..\\lecture_04_ic3\\Car.h" using namespace std; class Student { public: Student(int, string, string = "Generic student"); Student(string = "Generic student"); ~Student(); void GoToSchool(); void TakeClass(); private: Car* vehicle; string name; double GPA; void Initialize(string); };