?? dbmsapplication.h
字號:
/*
* ============================================================================
* Name : CDBMSApplication from DBMSApplication.h
* Part of : DBMS
* Created : 04.11.2006 by Forum Nokia
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __DBMS_APPLICATION_H__
#define __DBMS_APPLICATION_H__
#include <aknapp.h>
/**
* Class: CEComCalculatorApplication
*
* Description: An instance of CDBMSApplication is the application
* part of the AVKON application framework for the DBMS
* example application.
*
* The relevant part of this example is the database engine class
* CDBMSDb in DBEngine.h. The AVKON GUI is only a simple
* tester for the engine.
*/
class CDBMSApplication : public CAknApplication
{
public: // from CAknApplication
/**
* Function: AppDllUid
* Description: Return the application DLL UID value
* Returns: The UID of this Application Dll
*/
TUid AppDllUid() const;
protected: // from CAknApplication
/**
* Function: CreateDocumentL
* Description: Create a CApaDocument object and return a pointer to it.
* Returns: A pointer to the created document
*/
CApaDocument* CreateDocumentL();
};
#endif // __DBMS_APPLICATION_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -