Tempo
Tempo is an app that allows users to create and manage timers, stopwatches, and alarms.
Functions
main.cpp File Reference
#include "../include/Menu.hpp"
Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

int main ()
 The main function of the program. More...
 

Function Documentation

◆ main()

int main ( )

The main function of the program.

This function initializes the Menu object and starts the menu system. After the menu system finishes, the program prints a quit message and terminates.

Returns
int Returns 0 upon successful execution.

Definition at line 17 of file main.cpp.

17  {
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