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