summaryrefslogtreecommitdiff
path: root/University_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'University_Impl.cpp')
-rw-r--r--University_Impl.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/University_Impl.cpp b/University_Impl.cpp
new file mode 100644
index 0000000..c36d709
--- /dev/null
+++ b/University_Impl.cpp
@@ -0,0 +1,11 @@
+#include <iostream>
+
+#include "University.hh"
+
+auto University::set_univ_pin(int upin) -> void { this->university_pin = upin; }
+
+auto University::get_univ_pin() -> int { return this->university_pin; }
+
+auto University::print_univ_pin() -> void {
+ std::cout << "University pin: " << this->university_pin << '\n';
+}