cssyncapplication.h
来自「Symbian Client_Server_Application」· C头文件 代码 · 共 50 行
H
50 行
/*
* ==============================================================================
* Name :CSSyncApplication.h
* Part of : clientserversync
* Interface :
* Description :
* Version :
* ==============================================================================
*/
#ifndef __CSSYNCAPPLICATION_H__
#define __CSSYNCAPPLICATION_H__
// INCLUDES
#include <aknapp.h>
// CLASS DECLARATION
/**
* CCSSyncApplication application class.
* Provides factory to create concrete document object.
* An instance of CCSSyncApplication is the application part of the
* AVKON application framework for the CSSync example application.
*/
class CCSSyncApplication : public CAknApplication
{
public: // Functions from base classes
/**
* From CApaApplication, AppDllUid.
* @return Application's UID (KUidCSSyncApp).
*/
TUid AppDllUid() const;
protected: // Functions from base classes
/**
* From CApaApplication, CreateDocumentL.
* Creates CCSSyncDocument document object. The returned
* pointer in not owned by the CCSSyncApplication object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
};
#endif // __CSSYNCAPPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?