This project will work with a database of Bank accounts.
There are many ways to work with them, and when the program finishes, all data will be saved in the base file.
To compile and run this project,
you need to run the following commands in your terminal.
Used g++ version: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Used cmake version 3.16.3
$ chmod +x ./build.sh
$ ./build.sh
A project created using nlohmann/json library.
main directory
|
|__ ./_build/ .... directory for building results (must be made from ./build.sh)
|
|__ ./source/ ............................ directory for source files of project
| |
| |__ ./lib/ ......................................... directory for libreries
| | |
| | |__ AccountBaseCtrl.hpp
| | |
| | |__ AccountBaseCtrl.cpp
| | |
| | |
| | |__ Account.hpp
| | |
| | |__ Account.cpp
| | |
| | |
| | |__ AccountBase.hpp
| | |
| | |__ AccountBase.cpp
| | |
| | |
| | |__ UserConnection.hpp
| | |
| | |__ UserConnection.cpp
| | |
| | |
| | |__ json.hpp ........... nlohmann's librery for working with .json files
| | |
| | |__ CMakeLists.txt ........................... description for libraries
| |
| |__ ./program
| | |
| | |__ main.cpp
| | |
| | |__ CMakeLists.txt ....................... description for project files
| |
| |
| |__ CMakeLists.txt ........................... description for program files
| |
|__ ./build.sh .................................... simple bash script for Cmake