// Student.h: Interface for class Student. #if !defined STUDENT_H #define STUDENT_H #include class Student { public: Student(); ~Student(); void set( std::string, int, int ); void print(); std::ostream& write( std::ostream& ) const; std::istream& read( std::istream& ); private: std::string name; int matNr; int age; }; #endif