⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tictactoedocument.h

📁 《Symbian S60第3版手机程序开发与实用教程》光盘源代码
💻 H
字号:
/*
* ==============================================================================
*  Name        : TicTacToeDocument.h
*  Part of     : TicTacToe
*  Interface   : 
*  Description : 
*  Version     : 
*
*  Copyright (c) 2005 Nokia Corporation.
* ==============================================================================
*/

#ifndef __TICTACTOE_DOCUMENT_H__
#define __TICTACTOE_DOCUMENT_H__

//  INCLUDES

#include <akndoc.h>

// FORWARD DECLARATIONS

class CTicTacToeAppUi;
class CEikApplication;

// CLASS DECLARATION

/**
* An instance of class CTicTacToeDocument is the Document part of the AVKON
* application framework for the TicTacToe application.
*/
class CTicTacToeDocument : public CAknDocument
    {
    public:

        /**
        * Construct a CTicTacToeDocument for the AVKON application aApp using
        * two phase construction, and return a pointer to the created object.
        * @param aApp application creating this document
        * @result A pointer to the created instance of CTicTacToeDocument
        */
        static CTicTacToeDocument* NewL(CEikApplication& aApp);

        /**
        * Construct a CTicTacToeDocument for the AVKON application aApp using
        * two phase construction, and return a pointer to the created object.
        * @param aApp application creating this document
        * @result A pointer to the created instance of CTicTacToeDocument
        */
        static CTicTacToeDocument* NewLC(CEikApplication& aApp);

        /**
        * Destroy the object;
        */
        ~CTicTacToeDocument();

        /**
        * Create a CTicTacToeAppUi object and return a pointer to it.
        * @result A pointer to the created instance of the AppUi created
        */
        CEikAppUi* CreateAppUiL();
    private:

        /**
        * Perform the second phase construction of a CTicTacToeDocument object.
        */
        void ConstructL();

        /**
        * Perform the first phase of two phase construction.
        * @param aApp application creating this document
        */
        CTicTacToeDocument(CEikApplication& aApp);
    };

#endif // __TICTACTOE_DOCUMENT_H__

// End of File

⌨️ 快捷键说明

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