24 lines
551 B
C++
24 lines
551 B
C++
/*
|
|
File: Trenser.VehicleServiceSystem.cpp
|
|
Description: Entry point for the Vehicle Service Management System.
|
|
Initializes the UserInterface and starts the application loop.
|
|
Author: Trenser
|
|
Date: 19-May-2026
|
|
*/
|
|
|
|
#include "UserInterface.h"
|
|
|
|
/*
|
|
Function: main
|
|
Description: The main entry point of the application.
|
|
Creates a UserInterface object and invokes the run method to start the system.
|
|
Parameters:
|
|
- None
|
|
Returns:
|
|
- int: Exit status code (0 for successful execution).
|
|
*/
|
|
int main()
|
|
{
|
|
UserInterface userInterface;
|
|
userInterface.run();
|
|
} |