Give the user the ability to add their completed work to a database.
- Record the number of hours worked on a specific date
- Record task accomplished on this day
- Visualize the whole data recorded
- Visualize the total number of hours worked
Download the source code to your local computer, then compile it with your favorite compiler (I use g++ on macOS). Once compiled, you can start adding your working time to the database (the .dat file will be automatically created on your disk).
The following needs to be implemented:
- Error handler on user inputs.
- Update the project database from .dat file to (maybe?) PostgreSQL
- Update the method for adding data to the database and handling record breaks.
Project is created with:
- C++20