⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 silentsmsapplication.h

📁 symbian第二版秘密收发短信(不响铃不震动)的例子实现。
💻 H
字号:
/*
============================================================================
 Name        : SilentSmsApplication.h
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Main application class
============================================================================
*/

#ifndef __SILENTSMSAPPLICATION_H__
#define __SILENTSMSAPPLICATION_H__

// INCLUDES
#include <aknapp.h>

// CLASS DECLARATION

/**
* CSilentSmsApplication application class.
* Provides factory to create concrete document object.
* An instance of CSilentSmsApplication is the application part of the
* AVKON application framework for the SilentSms example application.
*/
class CSilentSmsApplication : public CAknApplication
    {
    public: // Functions from base classes

        /**
        * From CApaApplication, AppDllUid.
        * @return Application's UID (KUidSilentSmsApp).
        */
        TUid AppDllUid() const;

    protected: // Functions from base classes

        /**
        * From CApaApplication, CreateDocumentL.
        * Creates CSilentSmsDocument document object. The returned
        * pointer in not owned by the CSilentSmsApplication object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
    };

#endif // __SILENTSMSAPPLICATION_H__

// End of File

⌨️ 快捷键说明

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