23 lines
348 B
C++
23 lines
348 B
C++
/*
|
|
* Clock app for Project One
|
|
* main.cpp
|
|
*
|
|
* Date: 2022/03/16
|
|
* Author: Cody Cook
|
|
*/
|
|
|
|
#include "Clock.h"
|
|
#include "Menu.h"
|
|
|
|
void main()
|
|
{
|
|
// call for initial setting of time
|
|
setTime();
|
|
|
|
// while the user hasn't exited, show the menu and give menu options
|
|
while (menuCommand != "exit")
|
|
{
|
|
printMenu(menuItems, 4, 26);
|
|
mainMenu();
|
|
}
|
|
} |