2019-06-27 01:20:06 +00:00
|
|
|
|
|
|
|
use
|
|
|
|
```
|
|
|
|
cmake -G "MinGW Makefiles" -S ./ -B ./build/
|
|
|
|
mingw32-make
|
|
|
|
```
|
|
|
|
to build the project.
|
|
|
|
it will generate the .exe in /build/park.exe
|
|
|
|
Or click the build icon in vscode *shrugs*
|
|
|
|
|
|
|
|
|
|
|
|
# Parkmanne
|
|
|
|
## A stroll in the park
|
2019-07-02 18:56:10 +00:00
|
|
|
|
2019-07-18 01:30:47 +00:00
|
|
|
######TO-DO List:
|
|
|
|
- [x] Admin login
|
2019-07-23 15:05:40 +00:00
|
|
|
- [x] Billing report menu
|
|
|
|
- [x] Report from a specific month i.e. january
|
|
|
|
- [x] Edit option in menu
|
|
|
|
- [x] Option to confirm edit after input
|
|
|
|
- [x] Divide menu in sub menus
|
|
|
|
- [x] Analytics of customer (e.g. # customers with 2-wheeler or list of customer and telephone numbers etc.)
|
2019-07-02 18:56:10 +00:00
|
|
|
|
|
|
|
This is a graph of how everything is connected.
|
|
|
|
If you need to add functionality that doesn't fall in any of these, and you're unsure of what to include, you can decide something like this:
|
|
|
|
|
|
|
|
Take my customer class for example.
|
|
|
|
It needs to be able to save to db, so it needs data.
|
|
|
|
It needs to modify and save park_time objects, so it needs those.
|
|
|
|
It needs to encrypt and decrypt passwords. BUT since data already includes encrypt, it doesn't have to be encrypted.
|
|
|
|
So customer includes those.
|
|
|
|
|
|
|
|
Another example is Parkspot.
|
|
|
|
It needs information about both customers and save to the database.
|
|
|
|
Since customer also includes data, i don't have to include it again.
|
|
|
|
|
|
|
|
Last example:
|
|
|
|
|
|
|
|
|
2019-07-23 15:09:44 +00:00
|
|
|
![header includes](graph.png)
|
2019-07-02 18:56:10 +00:00
|
|
|
|