Welcome to the C++ Inventory Manager!
This console application helps you manage products and categories in a simple inventory system.
- ποΈ Add, list, and remove categories
- π Add, list, and remove products
- π Link products to categories
- π See all your stock in one place
- Build the project with your favorite C++ compiler
- Run the executable
- Use the interactive menu to:
- Add new categories and products
- View lists of products and categories
- Remove items from your inventory
src/
βββ controllers/
β βββ product_controller.h/.cpp
β βββ category_controller.h/.cpp
βββ models/
β βββ product.h/.cpp
β βββ category.h/.cpp
βββ main.cpp
===== Gerenciador de Estoque =====
1. Add category
2. List categories
3. Add product
4. List products
5. Remove product
6. Remove category
0. Exit
Choose an option:
- All data is stored in memory (no database/file persistence yet).
- The program is in English, but some menu labels may be in Portuguese.
Made with π using C++