bookstoreapplication.h

来自「在S60上建立一个书籍存储的数据库.包括建立数据表,索引,以及基本SQL操作.」· C头文件 代码 · 共 51 行

H
51
字号
/*
 * ============================================================================
 *  Name     : CBookstoreApplication from BookstoreApplication.h
 *  Part of  : Bookstore
 *  Created  : 8.12.2003 by Forum Nokia
 *  Version  : 1.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#ifndef __BOOKSTORE_APPLICATION_H__
#define __BOOKSTORE_APPLICATION_H__

#include <aknapp.h>


/**
 * Class:       CEComCalculatorApplication
 *
 * Description: An instance of CBookstoreApplication is the application
 *              part of the AVKON application framework for the Bookstore
 *              example application.
 *
 *              The relevant part of this example is the database engine class
 *              CBookstoreDb in DBEngine.h. The AVKON GUI is only a simple
 *              tester for the engine.
 */
class CBookstoreApplication : 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 // __BOOKSTORE_APPLICATION_H__

⌨️ 快捷键说明

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