#include #include #include "AtmAdmin.h" int main() { bool continueLoop{true}; while (continueLoop) { // startup() presents the user with the choices below. // The other functions should handle invalid choices. // ((1. Change pin || 2. Change money || 3. Change account name || Q. Exit the program)) char userChoice{AtmAdmin::startup()}; std::string userInformation{}; // The bulk of the program, allowing user to interact with the program. // Always returns true unless 'Q' is entered. continueLoop = AtmAdmin::handleUserInformation(static_cast(std::tolower(userChoice)), userInformation); std::cout << userInformation << '\n'; // DEBUG } }