?? cpoolcell.cpp
字號:
#include "CPoolCell.h"
CPoolCell::CPoolCell()
{
m_index = 0;
}
CPoolCell::~CPoolCell()
{
}
//////////////////////////////////////////////////////////////////////
//
//////////////////////////////////////////////////////////////////////
bool CPoolCell::operator == ( int i )
{
return ( m_index == i );
}
//////////////////////////////////////////////////////////////////////
//
//////////////////////////////////////////////////////////////////////
void CPoolCell::operator = ( int i )
{
m_index = i;
}
//////////////////////////////////////////////////////////////////////
//
//////////////////////////////////////////////////////////////////////
CPoolCell & CPoolCell::operator = ( CPoolCell &cell )
{
m_index = cell.m_index;
return *this;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -