An open API service indexing awesome lists of open source software.

https://github.com/jasongrosso/cpp_class


https://github.com/jasongrosso/cpp_class

Last synced: 9 months ago
JSON representation

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.