helpexampleapplication.h

来自「应用于S60平台的示例程序」· C头文件 代码 · 共 63 行

H
63
字号
/*
* ==============================================================================
*  Name        : helpexampleapplication.h
*  Part of     : Help example
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2004 - 2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef __HELPEXAMPLE_APPLICATION_H__
#define __HELPEXAMPLE_APPLICATION_H__

// INCLUDES
#include <aknapp.h>
#include "HelpExampleUID.hrh"

// CONSTANTS

// UID for the application; this should correspond to the UID
// defined in the mmp file
const TUid KUidHelpExampleApp = { HELP_UID3 };
const TUid KUidHelpFile = { HELPFILE_UID };

// CLASS DECLARATIONS

/**
* CHelpExampleApplication
* An instance of CHelpExampleApplication is the application part of the AVKON
* application framework for the HelpExample example application
*/

class CHelpExampleApplication : public CAknApplication
    {
        public:  // from CAknApplication

            /**
            * AppDllUid()
            * Return the application DLL UID value
            * @return The UID of this Application/Dll
            */
            TUid AppDllUid() const;

        protected: // from CAknApplication

            /**
            * CreateDocumentL()
            * Create a CApaDocument object and return a pointer to it
            * @return A pointer to the created document
            */
            CApaDocument* CreateDocumentL();
    };

#endif // __HELPEXAMPLE_APPLICATION_H__

// End of File

⌨️ 快捷键说明

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