Files
Datastructs/Exam/IKT203Exam/Portfolio/Assignment-03/TEmployee.h
2025-11-07 22:27:11 +01:00

26 lines
402 B
C++

#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