Pepperoni Factory

Implement a program that creates pizzas based on user order. Create a class Pizza which consists of a dynamically allocated array of Ingredient object pointers (a double pointer).

Abstract- Pizza Write the code in C++ Implement a program that creates pizzas based on user order. First, create class called Ingredient with one instance variable description of type string which is set in the constructor and can be get using a getter function. Create the following classes that derive from Ingredient: Tomato Sauce, Cheese, […]

Scroll to top