📄 brctlsampleapp.h
字号:
/*
* ============================================================================
* Name : BrCtlSampleApp.h
* Part of : BrCtlSampleApp
* Interface :
* Description : Declares main application class.
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ============================================================================
*/
#ifndef BRCTLSAMPLEAPPAPP_H
#define BRCTLSAMPLEAPPAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidBrCtlSampleApp = { 0xA0000181 };
// CLASS DECLARATION
/**
* CBrCtlSampleApp application class.
* Provides the factory to create a concrete document object.
*
*/
class CBrCtlSampleApp : public CAknApplication
{
public: // Functions from base classes
/**
* From CApaApplication, overridden to enable INI file support.
* @return CDictionaryStore*, A pointer to the dictionary store
*/
CDictionaryStore* OpenIniFileLC(RFs& aFs) const;
private:
/**
* From CApaApplication, creates CBrCtlSampleAppDocument document object.
* @return CApaDocument*, A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidBrCtlSampleApp).
* @return TUid, The value of KUidBrCtlSampleApp.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -