/* * HouseBlend.hpp * * Created on: 1 нояб. 2021 г. * Author: alexander */ #pragma once #include "Beverage.hpp" class HouseBlend: public Beverage { public: HouseBlend() { description = "House Blend"; } double cost() const override { return 0.89; } };