multiviewexamapp.h
来自「国内著名嵌入式培训机构内部资料,内含一些实例代码,包括技术专题书籍」· C头文件 代码 · 共 47 行
H
47 行
/*
============================================================================
Name : CMultiViewExamApp from MultiViewExamApp.h
Author : Hou maoqing
Version :
Copyright : Copyright (c) Hou maoqing 2008
Description : Declares main application class.
============================================================================
*/
#ifndef MULTIVIEWEXAMAPP_H
#define MULTIVIEWEXAMAPP_H
// INCLUDES
#include <aknapp.h>
// CLASS DECLARATION
/**
* CMultiViewExamApp application class.
* Provides factory to create concrete document object.
*
*/
class CMultiViewExamApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CMultiViewExamDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidMultiViewExam).
* @return The value of KUidMultiViewExam.
*/
TUid AppDllUid() const;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?