Completed BST and most of infrastructure for the whole section

This commit is contained in:
Christopher Sanden
2025-11-07 22:27:11 +01:00
parent e761ac0e23
commit d6d627adad
13 changed files with 449 additions and 22 deletions

View File

@@ -0,0 +1,26 @@
#ifndef IKT203_COURSE_ASSIGNMENTS_TEMPLOYEE_H
#define IKT203_COURSE_ASSIGNMENTS_TEMPLOYEE_H
#include <string>
#include <utility>
struct TEmployee {
std::string firstName;
std::string lastName;
int id;
TEmployee(std::string f, std::string l) : firstName(std::move(f)), lastName(std::move(l)) {};
~TEmployee() = default;
};
#endif //IKT203_COURSE_ASSIGNMENTS_TEMPLOYEE_H