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