exampleclientapplication.h
来自「symbian os c/c++ 手机客户端使用HTTP通信例子」· C头文件 代码 · 共 61 行
H
61 行
/*
* ============================================================================
* Name : ExampleClientApplication.h
* Part of : HTTP Example
* Created : 11/14/2003 by Forum Nokia
* Implementation notes:
*
*
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __EXAMPLECLIENT_APPLICATION_H__
#define __EXAMPLECLIENT_APPLICATION_H__
#include <aknapp.h>
class CExampleClientApplication : public CAknApplication
{
/*
* From CAknApplication
*/
public:
/*
* AppDllUid()
*
* Returns the UID for the ExampleClient application
*
* Params:
* -
*
* Returns:
* UID of the application.
*
*/
TUid AppDllUid() const;
/*
* From CAknApplication
*/
protected:
/*
* CreateDocumentL()
*
* Creates new document and returns pointer to it. Called by the application
* DLL framework to create a new instance of the document associated with this
* application.
*
* Params:
* -
*
* Returns:
* -
*
*/
CApaDocument* CreateDocumentL();
};
#endif // __EXAMPLECLIENT_APPLICATION_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?