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

📄 imagemanipapplication.cpp

📁 鲜为人知的symbian s60 2rd图形图像处理源代码
💻 CPP
字号:
/**
 *
 * @brief Definition of CImageManipApplication
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version 1.0
 */

// INCLUDE FILES

// Class includes
#include "ImageManipApplication.h"

// User includes
#include "ImageManipDocument.h"

/**
 * @brief From CApaApplication, returns the application's UID (KUidImageManip).
 * @return The value of KUidImageManip.
 */
TUid CImageManipApplication::AppDllUid() const
	{
	return KUidImageManip;
	}

/**
 * @brief From CApaApplication, creates a CImageManipDocument object.
 * @return A pointer to the created document object.
 */
CApaDocument* CImageManipApplication::CreateDocumentL()
	{
	return CImageManipDocument::NewL(*this);
	}

⌨️ 快捷键说明

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