📄 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 + -