wsexampledocument.h

来自「Symbian智能手机操作系统源代码值的参考_服务器」· C头文件 代码 · 共 52 行

H
52
字号
                                              //
//============================================================================
// Name     : CWSExampleDocument from WSExampleDocument.h
// Part of  : WSExample
// Created  : 10/08/2005 by Forum Nokia
// Implementation notes: Declares document for application.
//                       
// Version  : 1.0
// Copyright: Nokia Corporation
//============================================================================
//

#ifndef WSEXAMPLEDOCUMENT_H
#define WSEXAMPLEDOCUMENT_H

// INCLUDES
#include <akndoc.h>
   
// CONSTANTS

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

class CWSExampleDocument : public CAknDocument
    {
    public: // Constructors and destructor
        static CWSExampleDocument* NewL(CEikApplication& aApp);

        virtual ~CWSExampleDocument();

    public: // New functions

    protected:  // New functions

    protected:  // Functions from base classes

    private:

        CWSExampleDocument(CEikApplication& aApp);
        void ConstructL();

    private:
        CEikAppUi* CreateAppUiL();
    };

#endif

// End of File

⌨️ 快捷键说明

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