multiviewsapplication.h
来自「symbian os c/c++ 多个view切换」· C头文件 代码 · 共 63 行
H
63 行
/*
* ==============================================================================
* Name : multiviewsapplication.h
* Part of : MultiViews
* Interface :
* Description :
* Version :
*
Copyright (c) 2004 - 2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef __MULTIVIEWS_APPLICATION_H__
#define __MULTIVIEWS_APPLICATION_H__
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// Uid for the application, should match the one in the mmp file
const TUid KUidMultiViewsApp = { 0xA00001FA };
// CLASS DECLARATION
/**
* An instance of CMultiViewsApplication is the application part of the AVKON
* application framework for the MultiViews example application
*/
class CMultiViewsApplication : public CAknApplication
{
public: // from CAknApplication
/**
* AppDllUid
* @return returns application's UID (KUidAknExMenu).
*/
TUid AppDllUid() const;
protected: // from CAknApplication
/**
* CreateDocumentL
* Creates CMultiViewsDocument document object.
* The returned pointer in not owned by the CMultiViewsApplication object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
};
#endif // __MULTIVIEWS_APPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?