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