?? president.cpp
字號(hào):
// President.cpp: implementation of the President class.
//
//////////////////////////////////////////////////////////////////////
#include "President.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
President::President(char* pp)
{
strcpy( m_Party, pp );
}
President::~President()
{
}
void President::PartyLine()
{
cout << m_Party<< ": speak no evil" << endl;
}
Officer* President::Clone()
{
return new President(*this);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -