The project includes database.h, database.cpp, driver.cpp, testing.txt as well as a Makefile.
database.h is the header file for function declarations. database.cpp contains all the definitions for the functions that operate the "database". driver.cpp is the source file that provides the message stubs and the database interface. testing.txt is an example database file for how the data is stored and can be used to test the database.
Navigate to the folder in Terminal and utilise the provided Makefile to compile the source code using:
make
Use the following command to run the executable for the driver program.
make run
Use the following command to remove the binary files from the project folder.
make clean
CHNJAR003