Tempo
Tempo is an app that allows users to create and manage timers, stopwatches, and alarms.
main.cpp
Go to the documentation of this file.
1 #include "../include/Menu.hpp"
2 
3 using namespace std;
4 
5 /* =========================================================
6 MAIN FUNCTION
7 ========================================================= */
8 
17 int main() {
18 
19  // Create a Menu object
20  Menu menu(false);
21 
22  cout << "<< PROGRAM QUIT >>" << endl;
23 
24  return 0;
25 }
The Menu class manages the main menu and user input for the Timer Stopwatch and Alarm.
Definition: Menu.hpp:21
STL namespace.
int main()
The main function of the program.
Definition: main.cpp:17