https://github.com/sathiypriyan/toll-transaction-simulator
C++17 project simulating a toll plaza system. Reads vehicle data, applies toll rules, stores transactions in SQLite, and generates summary reports. Demonstrates modern C++ with STL, OOP, and database integration.
https://github.com/sathiypriyan/toll-transaction-simulator
cpp17 oop sqlite system-simulation
Last synced: 28 days ago
JSON representation
C++17 project simulating a toll plaza system. Reads vehicle data, applies toll rules, stores transactions in SQLite, and generates summary reports. Demonstrates modern C++ with STL, OOP, and database integration.
- Host: GitHub
- URL: https://github.com/sathiypriyan/toll-transaction-simulator
- Owner: Sathiypriyan
- Created: 2025-08-23T05:12:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-23T07:33:34.000Z (10 months ago)
- Last Synced: 2025-08-24T10:15:58.136Z (10 months ago)
- Topics: cpp17, oop, sqlite, system-simulation
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toll Transaction Simulator (C++17)
This project simulates a toll plaza system:
- Reads vehicle entries from a file
- Calculates toll fees
- Stores transactions in SQLite
- Generates summary reports
## Build & Run
```bash
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