📄 videoplayerdocument.h
字号:
/*
* ============================================================================
* Name : CVideoPlayerDocument from VideoPlayerDocument.h
* Part of : VideoPlayer
* Created : 31.01.2006 by ToBeReplacedByAuthor
* Description:
* Declares document for application.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
#ifndef VIDEOPLAYERDOCUMENT_H
#define VIDEOPLAYERDOCUMENT_H
// INCLUDES
#include <akndoc.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CVideoPlayerDocument application class.
*/
class CVideoPlayerDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CVideoPlayerDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CVideoPlayerDocument();
public: // New functions
public: // Functions from base classes
protected: // New functions
protected: // Functions from base classes
private:
/**
* EPOC default constructor.
*/
CVideoPlayerDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CVideoPlayerAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -