/* File: TalentExecutive.h * Description : Represents information related to a talent executive in the system. * Author : Trenser * Created : 31-Mar-2026 */ #pragma once #include "Employee.h" class TalentExecutive : public Employee { };