summaryrefslogtreecommitdiff
path: root/College_Impl.cpp
blob: 1d96b2d2da92bee4f46ab17b60ea63e7501af9cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <iostream>
#include <string>
#include <utility>

#include "College.hh"
#include "University.hh"

auto College::set_college_name(std::string name) -> void {
  this->college_name = std::move(name);
}

auto College::get_college_name() -> std::string { return this->college_name; }

auto College::set_college_location(std::string location) -> void {
  this->college_location = std::move(location);
}

auto College::get_college_location() -> std::string {
  return this->college_location;
}

auto College::operator==(const University &university) -> bool {
  return this->university_pin.get_univ_pin() == university.get_univ_pin();
}

auto College::print_pin() -> void {
  std::cout << "University Pin: " << this->university_pin.get_univ_pin()
            << '\n';
}