This project simulates a toll plaza system:
- Reads vehicle entries from a file
- Calculates toll fees
- Stores transactions in SQLite
- Generates summary reports
mkdir build && cd build
cmake ..
make
./TollSimulator
Sample Input:
TN01CAR123 car
TN09TRK789 truck
Sample Output:
--- Toll Report ---
Type: car | Vehicles: 2 | Total: 100
Type: truck | Vehicles: 1 | Total: 100