📄 camdecode_3rdapplication.h
字号:
/*
============================================================================
Name : CamDecode_3rdApplication.h
Author :
Version :
Copyright : Your copyright notice
Description : Main application class
============================================================================
*/
#ifndef __CAMDECODE_3RDAPPLICATION_H__
#define __CAMDECODE_3RDAPPLICATION_H__
// INCLUDES
#include <aknapp.h>
#include "CamDecode_3rd.hrh"
// UID for the application;
// this should correspond to the uid defined in the mmp file
const TUid KUidCamDecode_3rdApp = { _UID3 };
// CLASS DECLARATION
/**
* CCamDecode_3rdApplication application class.
* Provides factory to create concrete document object.
* An instance of CCamDecode_3rdApplication is the application part of the
* AVKON application framework for the CamDecode_3rd example application.
*/
class CCamDecode_3rdApplication : public CAknApplication
{
public: // Functions from base classes
/**
* From CApaApplication, AppDllUid.
* @return Application's UID (KUidCamDecode_3rdApp).
*/
TUid AppDllUid() const;
protected: // Functions from base classes
/**
* From CApaApplication, CreateDocumentL.
* Creates CCamDecode_3rdDocument document object. The returned
* pointer in not owned by the CCamDecode_3rdApplication object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
};
#endif // __CAMDECODE_3RDAPPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -