diff options
Diffstat (limited to 'College.hh')
| -rw-r--r-- | College.hh | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -21,10 +21,20 @@ public: void set_college_name(std::string); std::string get_college_name(); + void set_college_location(std::string); std::string get_college_location(); - //......other setters and getters - bool operator==(const University &); + void set_college_rank(int); + int get_college_rank(); + + void set_reqd_gpa_for_admit(double); + double get_reqd_gpa_for_admit(); + + void set_university_pin(const University &); + University get_university_pin(); + void print_pin(); + + bool operator==(const University &) const; }; |