📄 door.cpp
字号:
// Door.cpp: implementation of the Door class.
//
//////////////////////////////////////////////////////////////////////
#include "Door.h"
#include <iostream>
using namespace std;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Door::Door()
{
}
Door::~Door()
{
}
void Door::Open()
{
cout<<"Open door. . ."<<endl;
}
void Door::Close()
{
cout<<"Close door !"<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -