summaryrefslogtreecommitdiff
path: root/College.hh
diff options
context:
space:
mode:
Diffstat (limited to 'College.hh')
-rw-r--r--College.hh14
1 files changed, 12 insertions, 2 deletions
diff --git a/College.hh b/College.hh
index 756bffe..8b0b728 100644
--- a/College.hh
+++ b/College.hh
@@ -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;
};