Go to file
MassiveAtoms c256f5f589 ??
2019-07-22 09:39:56 -03:00
headers ?? 2019-07-22 09:39:56 -03:00
thirdparty/SQLiteCpp Changed minimum from 3.11 to 3.10, talking about cmake 2019-07-08 18:53:10 -03:00
_test.db3 ?? 2019-07-22 09:39:56 -03:00
.clang-format added telephone support 2019-07-08 17:57:09 -03:00
.gitignore
CMakeLists.txt implementation of admin added, animation commented out for faster testing and while loop added with exit in main() 2019-07-17 22:30:47 -03:00
Customer.cpp sdf 2019-07-21 22:13:34 -03:00
data.cpp working now 2019-07-21 23:04:26 -03:00
Development Guidelines.md
encrypt.cpp added telephone support 2019-07-08 17:57:09 -03:00
graph.png
Interface.cpp intergration 2019-07-22 08:57:53 -03:00
main.cpp intergration 2019-07-22 08:57:53 -03:00
newParkManne.cpp while loop in admin and exit 2019-07-17 10:26:22 -03:00
park Animation added 2019-07-08 20:46:19 -03:00
Park_spot.cpp added telephone support 2019-07-08 17:57:09 -03:00
Park_time.cpp works, fixed another db problem 2019-07-22 00:34:26 -03:00
Query.cpp ?? 2019-07-22 09:39:56 -03:00
readme.md implementation of admin added, animation commented out for faster testing and while loop added with exit in main() 2019-07-17 22:30:47 -03:00
test.db3 ?? 2019-07-22 09:39:56 -03: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

######TO-DO List:

  • Admin login
  • Billing report menu
  • Report from a specific month i.e. january
  • Edit option in menu
  • Option to confirm edit after input
  • Divide menu in sub menus
  • Analytics of customer (e.g. # customers with 2-wheeler or list of customer and telephone numbers etc.)

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:

header includes