First page Back Continue Last page Graphics
PROTECTION
To support data hiding, we change the definition
class Student_info { public: // interface goes here double grade( ) const; istream& read(istream&); private: //implementation goes here string name; double midterm, final; vector<double> homework; };