ChicagoStyleCheesePizza.hpp 380 字节
Newer Older
L
liu-jianhao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef CHICAGOSTYLECHEESEPIZZA_HPP
#define CHICAGOSTYLECHEESEPIZZA_HPP

#include "Pizza.hpp"

class ChicagoStyleCheesePizza: public Pizza
{
public:
    ChicagoStyleCheesePizza()
    {
        name = "Chicago Style Deep Dish Pizza";
        dough = "Extra thick crust dough";
        sauce = "Plum tomato sauce";
        toppings.push_back("Shredded mozzarella");
    }
};

#endif