aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise05/FN.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'week10/Exercise05/FN.cpp')
-rw-r--r--week10/Exercise05/FN.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/week10/Exercise05/FN.cpp b/week10/Exercise05/FN.cpp
new file mode 100644
index 0000000..877c551
--- /dev/null
+++ b/week10/Exercise05/FN.cpp
@@ -0,0 +1,10 @@
+#include "FN.h"
+#include <iostream>
+
+FN::FN(unsigned facultyNumber) {
+ this->facultyNumber = facultyNumber;
+}
+
+void FN::PrintOldFN() {
+ std::cout << facultyNumber;
+}