#include "record.h" Student::Student(int s_id, std::string s_name) { id = s_id; name = s_name; } int Student::get_id(void) { return id; } std::string Student::get_name(void) { return name; }