vrexfiledetails.cpp

来自「symbian s60 有关音频的代码实例,供参考」· C++ 代码 · 共 61 行

CPP
61
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?