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 /College.hh | |
| parent | f (diff) | |
| download | cst_136_assignment_07-main.tar.xz cst_136_assignment_07-main.zip | |
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; }; |