Inventory Accounting - C++
Old project from college back in 2017 , it is written in C++. It is structured as an option menu with each prompting different input functions for the user. It emulates an inventory accounting program that allows user to add items, their name, qty and cost per unit and queries the list, displaying the product name, cost per unit, quantity, total cost and the grand total of all items combined. The items can be queried by cost, or name, ascending or descending, and implements a wildcard search for the names.
I created a separate module containing a class called inventory which gets invoked in the main file to create a new inventory object and passes the input through as parameters to inherit values for cost, qty, and product attributes.
The new inventory object is then stored as a vector element which is used as a list purposed for searching and querying items through different iterations and sorting methods.


