https://github.com/jasongrosso/cpp_class
https://github.com/jasongrosso/cpp_class
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jasongrosso/cpp_class
- Owner: JasonGROSSO
- License: gpl-3.0
- Created: 2025-01-11T20:32:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-21T13:06:38.000Z (over 1 year ago)
- Last Synced: 2025-07-08T08:46:48.911Z (12 months ago)
- Language: C++
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Car Storage System
This project implements a simple console-based car storage system that allows users to manage a collection of cars. Users can add, retrieve, update, and remove cars from the storage through a user-friendly menu interface.
## Project Structure
```md
car-storage-system
├── src
│ ├── main.cpp # Entry point of the application with console menu
│ ├── car.h # Declaration of the Car class
│ └── storage.h # Declaration of the Storage class
├── Makefile # Build instructions for the project
└── README.md # Documentation for the project
```
## Features
- **Add Car**: Add a new car to the storage.
- **Retrieve Car**: Retrieve details of a specific car.
- **Update Car**: Update the details of an existing car.
- **Remove Car**: Remove a car from the storage.
## Build Instructions
1. Navigate to the project directory.
2. Run `make` to compile the project.
3. Execute the program with `./car-storage-system`.
## Usage
Upon running the application, a console menu will be displayed. Follow the prompts to manage the car storage system.