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

📄 threadaodocument.h

📁 symbian的线程和活动对象源码
💻 H
字号:
/*
* ============================================================================
*  Name     : CThreadAODocument from ThreadAODocument.h
*  Part of  : ThreadAO
*  Created  : 12.1.2005 by Forum Nokia
*  Description:
*       Declares document for application.
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef __THREAD_DOCUMENT_H__
#define __THREAD_DOCUMENT_H__

// INCLUDES
#include <akndoc.h>

// FORWARD DECLARATIONS
class CThreadAOAOAppUi;
class CEikApplication;

// CLASS DECLARATION

/*!
* discussion An instance of class CThreadAODocument is the Document part of
* the AVKON application framework for the ThreadAO example application
*/
class CThreadAODocument : public CAknDocument
    {
public:

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

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

/*!
* ~CThreadAOAppView()
*  
*  discussion Destroy the object
*/
    ~CThreadAODocument();

public: // from CAknDocument
/*!
*  CreateAppUiL() 
*  
*  discussion Create a CThreadAOAppUi object and return a pointer to it
*  result A pointer to the created instance of the AppUi created
*/
    CEikAppUi* CreateAppUiL();

private: // Basic two-phase Symbian OS constructors

/*!
*  ConstructL()
*  
*  discussion Perform the second phase construction of a CThreadAODocument
*  object
*/
    void ConstructL();

/*!
*  CThreadAODocument()
*  
*  discussion Perform the first phase of two phase construction 
*  param aApp The application creating this document
*/
    CThreadAODocument(CEikApplication& aApp);
    };


#endif // __THREAD_DOCUMENT_H__

⌨️ 快捷键说明

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