clocationexampleapplication.h

来自「Symbian Demo, why do you want to get 20 」· C头文件 代码 · 共 57 行

H
57
字号
/*
* ============================================================================
*  Name     : clocationexampleapplication.h
*  Part of  : Location Example
*  Created  : 21.05.2007 by Forum Nokia
*  Description:
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef __CLOCATIONEXAMPLEAPPLICATION_H__
#define __CLOCATIONEXAMPLEAPPLICATION_H__


// INCLUDES
#include <aknapp.h>


// CONSTANTS
// Uid for the application, should match the one in the mmp file
const TUid KUidLocationExampleApp = { 0xE01FF1Cd };

// CLASS DECLARATION

/**
* An instance of CLocationExampleApplication is the application part of the AVKON
* application framework for the MultiViews example application
*/
class CLocationExampleApplication : public CAknApplication
    {

    public:  // from CAknApplication

        /**
        * AppDllUid
        * @return returns application's UID (KUidAknExMenu).
        */
        TUid AppDllUid() const;


    protected: // from CAknApplication


        /**
        * CreateDocumentL
        * Creates CLocationExampleDocument document object.
        * The returned pointer in not owned by the CLocationExampleApplication object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
    };

#endif // __CLOCATIONEXAMPLEAPPLICATION_H__

// End of File

⌨️ 快捷键说明

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