📄 darkroast.hpp
字号:
#ifndef _HEAD_FIRST_DESIGN_PATTERNS_DECORATOR_DARK_ROAST_HPP_
#define _HEAD_FIRST_DESIGN_PATTERNS_DECORATOR_DARK_ROAST_HPP_
#include "Starbuzz.hpp"
namespace HeadFirstDesignPatterns {
namespace Decorator {
class DarkRoast : public Beverage {
public: DarkRoast() {
description = "Dark Roast Coffee";
}
public: virtual double cost() {
return 0.99;
}
};
} // namespace Observer
} // namespace HeadFirstDesignPatterns
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -