splashapp.h

来自「设置屏幕特效的symbian series60平台程序」· C头文件 代码 · 共 53 行

H
53
字号
/*
* ============================================================================
*  Name     : CSplashApp from SplashApp.h
*  Part of  : Splash
*  Created  : 17/02/2003 by Eric@NewLC
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef SPLASHAPP_H
#define SPLASHAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidSplash = { 0x03F88C74 };

// CLASS DECLARATION

/**
* CSplashApp application class.
* Provides factory to create concrete document object.
* 
*/
class CSplashApp : public CAknApplication
    {
    
    public: // Functions from base classes
    private:

        /**
        * From CApaApplication, creates CSplashDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
        
        /**
        * From CApaApplication, returns application's UID (KUidSplash).
        * @return The value of KUidSplash.
        */
        TUid AppDllUid() const;
    };

#endif

// End of File

⌨️ 快捷键说明

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