aoexampleapp.h

来自「Active Object实现动画」· C头文件 代码 · 共 42 行

H
42
字号
/*
* ==============================================================================
*  Name     : CAOExampleApp
*  Part of  : AOExample
*  Created  : 3.5.2004 by Markus Pelkonen
*  Description: Declares main application class.
*  Version  :
*  Copyright: Nokia
* ==============================================================================
*/

#ifndef AOEXAMPLEAPP_H
#define AOEXAMPLEAPP_H

#include <aknapp.h>
#include "AOExampleAppUID.h"

const TUid KUidAOExample = { AO_EXAMPLE_APP_UID };

/**
 * CAOExampleApp application class.
 * Provides factory method to create concrete document object.
 */
class CAOExampleApp : public CAknApplication
    {
    private: // from CAknApplication

        /**
        * From CApaApplication, creates CAOExampleDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();

        /**
        * From CApaApplication, returns application's UID (KUidAOExample).
        * @return The value of KUidAOExample.
        */
        TUid AppDllUid() const;
    };

#endif

⌨️ 快捷键说明

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