diff options
| author | Fuwn <[email protected]> | 2024-05-18 00:38:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-18 00:38:03 -0700 |
| commit | b6233bd925eb8bcf848e580371814e3bd745c63f (patch) | |
| tree | 0ab5728b7153c435ad4dadcb42af9e744f70da9a /High_School.hh | |
| parent | f (diff) | |
| download | cst_136_assignment_07-main.tar.xz cst_136_assignment_07-main.zip | |
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(); }; |