Completed BST and most of infrastructure for the whole section
This commit is contained in:
26
Exam/IKT203Exam/Portfolio/Assignment-03/TEmployee.h
Normal file
26
Exam/IKT203Exam/Portfolio/Assignment-03/TEmployee.h
Normal 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
|
||||
Reference in New Issue
Block a user