mmsexampledocument.h

来自「Symbian c++ 的彩信发送接收实例」· C头文件 代码 · 共 42 行

H
42
字号
/*
* ============================================================================
*  Name     : CMMSExampleDocument from CMMSExampleDocument.h
*  Part of  : MMSExample
*  Created  : 04.11.2006 by Forum Nokia
*  Description:
*     Declares main application class.
*  Version  : 2.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef MMSEXAMPLEDOCUMENT_H
#define MMSEXAMPLEDOCUMENT_H

// INCLUDES
#include <eikdoc.h>                         // for CEikDocument

//
// Application document class
//
class CMMSExampleDocument : public CEikDocument
    {
    	
public:

    //Two-phased constructor.
    static CMMSExampleDocument* NewL(CEikApplication& aApp); 
    //From CEikDocument, create CFileListAppUi "App UI" object.
    CEikAppUi* CreateAppUiL();
    
protected:

private:
	//Symbian default constructor.
    CMMSExampleDocument(CEikApplication& aApp);
    void ConstructL();
    };
    
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?