First page Back Continue Last page Graphics
DEFINITION OF read
istream& Student_info::read(istream& in) { in >> name >> midterm >> final; read_hw(in, homework); return in; }
Since this definition is part of the Student_info structure it is available to all users of the Student_info class.