camdecodeapp.h

来自「Symbian 调用摄像头的简单程序。实现了最基本的功能。」· C头文件 代码 · 共 48 行

H
48
字号
/*
============================================================================
 Name        : CCamDecodeApp from CamDecodeApp.h
 Author      : Augusta
 Version     :
 Copyright   : All Right Reserved
 Description : Declares main application class.
============================================================================
*/

#ifndef CAMDECODEAPP_H
#define CAMDECODEAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidCamDecode = { 0x0fa81346 };

// CLASS DECLARATION

/**
* CCamDecodeApp application class.
* Provides factory to create concrete document object.
* 
*/
class CCamDecodeApp : public CAknApplication
	{
	
	public: // Functions from base classes
	private:

		/**
		* From CApaApplication, creates CCamDecodeDocument document object.
		* @return A pointer to the created document object.
		*/
		CApaDocument* CreateDocumentL();
		
		/**
		* From CApaApplication, returns application's UID (KUidCamDecode).
		* @return The value of KUidCamDecode.
		*/
		TUid AppDllUid() const;
	};

#endif

⌨️ 快捷键说明

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