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

#include "Beverage.hpp"

class HouseBlend : public Beverage {
public:
    std::string getDescription() {
        return "House Blend Coffee";
    }

    double cost() {
        return .89;
    }
};

#endif