callinfo.cpp
来自「这是一个基于symbian操作系统的手机来电监听工具」· C++ 代码 · 共 34 行
CPP
34 行
/**
*
* @brief Definition of TCallInfo
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDES
// Class include
#include "CallInfo.h"
// ================= MEMBER FUNCTIONS =======================
/**
* C++ Constructor
*/
TCallInfo::TCallInfo()
: iDuration(0), iCount(-1)
{
}
/**
* Is there a associated contact
* @return ETrue if the contact has a name, or not.
*/
TBool TCallInfo::HasContact() const
{
return iName.Length() != 0;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?