class Student
{
public:
// Constructor
Student(const char * login, int age, int year, float GPA);
// Destructor
~Student();
// Mutators (settors/writing) are rarely const
void set_login(const char* login);
void set_age(int age);
void set_year(int year);
void set_GPA(float GPA);
// Accessor (gettors/reading) are const
int get_age() const;
int get_year() const;
float get_GPA() const;
const char *get_login() const;
// Print the Student to the screen
void display() const;
private:
char *login_;
int age_;
int year_;
float GPA_;
};