719bf5e7b3
<SRS> SRS01 : Authentication </SRS> <Changes> - Added basic UI structure with UserInterface and role-based menus (Admin, HR, IT, Finance, Talent, Team, TeamLead, Employee). - Created menu classes for different roles, each with run() and handleOperation() methods. </Changes> <Review> Smitha Mohan </Review>
15 lines
282 B
C++
15 lines
282 B
C++
#pragma once
|
|
#include<memory>
|
|
#include"ZenvyController.h"
|
|
|
|
class TeamExecutiveMenu
|
|
{
|
|
private:
|
|
std::shared_ptr<ZenvyController> m_zenvyController;
|
|
public:
|
|
TeamExecutiveMenu() : m_zenvyController(std::make_shared<ZenvyController>()) {};
|
|
void run();
|
|
bool handleOperation(int);
|
|
};
|
|
|