1. 헤더 파일 (Employee.h)#ifndef EMPLOYEE_H#define EMPLOYEE_H#include class Employee {private: std::string name; // 사원 이름 std::string birthday; // 생일 (형식: YYYY-MM-DD)public: // 생성자 Employee(const std::string& name, const std::string& birthday); // 이름 가져오기 std::string getName() const; // 생일 가져오기 std::string getBirthday() const; // 정보 출력 void displayInfo()..