⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 callinfo.cpp

📁 Symbian s60 2rd 通话摘要例题
💻 CPP
字号:
/**
* 
* @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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -