audioplayerdocument.h
来自「Symbian S60下的声音播放器的例子,适合初学者」· C头文件 代码 · 共 34 行
H
34 行
#ifndef __AUDIOPLAYERDOCUMENT_H__
#define __AUDIOPLAYERDOCUMENT_H__
// System includes
#include <akndoc.h> // CAknDocument
// CLASS DECLARATION
/**
*
* @class CAudioPlayerDocument AudioPlayerDocument.h
* @brief This is the document class for the example application illustrating
* the playing of various sound types.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CAudioPlayerDocument : public CAknDocument
{
public:
static CAudioPlayerDocument* NewL(CEikApplication& aApp);
~CAudioPlayerDocument();
private: // CEikDocument
CEikAppUi* CreateAppUiL();
private:
CAudioPlayerDocument(CEikApplication& aApp);
void ConstructL();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?