⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 camdecodeapp.cpp

📁 Symbian 调用摄像头的简单程序。实现了最基本的功能。
💻 CPP
字号:
/*
============================================================================
 Name        : CCamDecodeApp from CamDecodeApp.cpp
 Author      : Augusta
 Version     :
 Copyright   : All Right Reserved
 Description : Main application class
============================================================================
*/

// INCLUDE FILES
#include "CamDecodeApp.h"
#include "CamDecodeDocument.h"

// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CCamDecodeApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CCamDecodeApp::AppDllUid() const
	{
	return KUidCamDecode;
	}

   
// ---------------------------------------------------------
// CCamDecodeApp::CreateDocumentL()
// Creates CCamDecodeDocument object
// ---------------------------------------------------------
//
CApaDocument* CCamDecodeApp::CreateDocumentL()
	{
	return CCamDecodeDocument::NewL( *this );
	}

// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication() 
// Constructs CCamDecodeApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
	{
	return new CCamDecodeApp;
	}

// ---------------------------------------------------------
// E32Dll(TDllReason) 
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
	{
	return KErrNone;
	}

⌨️ 快捷键说明

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