?? vrexfiledetails.cpp
字號:
/*
* ============================================================================
* Name : CVideoFileDetails from VRexFileDetails.cpp
* Part of : Video Example
* Created : 30/08/2006 by Forum Nokia
* Implementation notes:
* Version : 2.0
* Copyright: Nokia Corporation, 2006
* ============================================================================
*/
// INCLUDE FILES
#include "VRexFileDetails.h"
/*
-----------------------------------------------------------------------------
CVideoFileDetails::CVideoFileDetails()
Description: C++ default constructor can NOT contain any code, that
might leave.
Comments :
Return values: N/A
-----------------------------------------------------------------------------
*/
CVideoFileDetails::CVideoFileDetails()
{
}
/*
-----------------------------------------------------------------------------
CVideoFileDetails::~CVideoFileDetails()
Description: Destructor.
Comments :
Return values: N/A
-----------------------------------------------------------------------------
*/
CVideoFileDetails::~CVideoFileDetails()
{
delete iTitle;
iTitle = NULL;
delete iFileName;
iFileName = NULL;
delete iUrl;
iUrl = NULL;
delete iFormat;
iFormat = NULL;
delete iCopyright;
}
// End of file
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -