You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Beverage : public MilkProduct //Beverage "Mashke" class include: Everything that in MilkProduct class
{
public:
Beverage(); //defualt C'tor
//virtual methods
virtual double setPriceOfProduct(double num = 3.0) const { return (MilkProduct::setPriceOfProduct()); } //calculate price with a defualt factor (can be changed by user) depends on MilkProduct price