20 lines
404 B
C++
20 lines
404 B
C++
/*
|
|
* File: TalentExecutiveMenu.h
|
|
* Description: Declaration of the TalentExecutiveMenu class and related functions.
|
|
* Author: Trenser
|
|
* Created: 02-Apr-2026
|
|
*/
|
|
#pragma once
|
|
#include"ZenvyController.h"
|
|
|
|
class TalentExecutiveMenu
|
|
{
|
|
private:
|
|
ZenvyController* m_zenvyController;
|
|
public:
|
|
TalentExecutiveMenu() : m_zenvyController(new ZenvyController()) {};
|
|
void run();
|
|
bool handleOperation(int);
|
|
};
|
|
|