Employee 클래스를 정의하고, 사원의 이름과 생일을 저장하고 출력하는 기능을 포함#include #include class Employee {private: std::string name; std::string birthday; // 생일을 문자열로 저장 (형식: YYYY-MM-DD)public: // 생성자 Employee(const std::string& name, const std::string& birthday) : name(name), birthday(birthday) {} // 이름 가져오기 std::string getName() const { return name; } // 생일 가져오기 std::string g..