📄 account.cpp
字号:
// Account.cpp: implementation of the Account class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Account.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Account::Account()
{
m_ID=0;
m_Balance=0;
}
Account::~Account()
{
}
void Account::SetID(int id)
{
m_ID = id;
}
int Account::GetID()
{
return m_ID;
}
void Account::SetBalance(double Balance)
{
m_Balance = Balance;
}
double Account::GetBalance()
{
return m_Balance;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -