Skip to content

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.

Notifications You must be signed in to change notification settings

Sathiypriyan/toll-transaction-simulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

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

About

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.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published