33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
#include <iostream>
|
|
#include <stdlib.h>
|
|
|
|
class MenuManager {
|
|
// public:
|
|
// MenuManager();
|
|
// int AcceptIntInputInRange(int minInput, int maxInput) {
|
|
// int input;
|
|
// std::cin >> input;
|
|
//
|
|
// while (input < minInput || input > maxInput) {
|
|
// std::cout << "Enter a number between " << minInput << " and " << maxInput << ": ";
|
|
// std::cin >> input;
|
|
// }
|
|
// return input;
|
|
// }
|
|
//
|
|
// int ShowMainMenu() {
|
|
// system("cls");
|
|
//
|
|
// std::cout<<"Select Information to display" <<std::endl
|
|
// << "1. Profit per Metric" <<std::endl
|
|
// << "2. Cunt Sales of type X in a Region" <<std::endl
|
|
// << "3. Most popular item type in country X" <<std::endl
|
|
// << "4. Online vs Offline Sales in country X" <<std::endl
|
|
// << "======" <<std::endl
|
|
// << "0 to Exit" <<std::endl;
|
|
//
|
|
// int choice = AcceptIntInputInRange(0,4);
|
|
// return choice;
|
|
// }
|
|
};
|