📄 carton.h
字号:
// Carton.h - defines the Carton class with the Box class as base
#ifndef CARTON_H
#define CARTON_H
#include "Box.h" // For Box class definition
class Carton : public Box {
public:
Carton(const char* pStr = "Cardboard"); // Constructor
~Carton(); // Destructor
private:
char* pMaterial;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -