15 lines
240 B
C++
15 lines
240 B
C++
/*
|
|
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
|
|
{
|
|
};
|
|
|