#include "record.h" Course::Course(int c_id, std::string c_name, unsigned char c_credits) { id = c_id; name = c_name; credits = c_credits; } int Course::get_id(void) { return id; } int Course::get_credits() { return credits; } std::string Course::get_name() { return name; }