#include "student.h" using std::cout; using std::endl; ostream& operator << (ostream& os, const Student& s) { return os << s.get_name() << '\t' << s.get_department() << endl; }
Hosted by www.Geocities.ws

1