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