silentsmsapplication.h
来自「symbian第二版秘密收发短信(不响铃不震动)的例子实现。」· C头文件 代码 · 共 49 行
H
49 行
/*
============================================================================
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 + =
减小字号Ctrl + -
显示快捷键?