diff options
Diffstat (limited to 'High_School.hh')
| -rw-r--r-- | High_School.hh | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/High_School.hh b/High_School.hh index 44950ab..152cf25 100644 --- a/High_School.hh +++ b/High_School.hh @@ -24,9 +24,20 @@ public: void set_high_school_name(std::string); std::string get_high_school_name(); + void set_high_school_location(std::string); std::string get_high_school_location(); - //......other setters and getters - bool operator==(const University &); + + void set_high_school_rank(int); + int get_high_school_rank(); + + void set_reqd_gpa_for_admit(double); + double get_reqd_gpa_for_admit(); + + void set_university_pin(const University &); + University get_university_pin(); + + bool operator==(const University &) const; + void print_pin(); }; |