ldcno17document.h

来自「SYmbian GUI 多视图实例」· C头文件 代码 · 共 79 行

H
79
字号
/* Copyright (c) 2008, Nokia. All rights reserved */

#ifndef __LDCNO17_DOCUMENT_H__
#define __LDCNO17_DOCUMENT_H__


#include <akndoc.h>

class CLDCNO17AppUi;
class CEikApplication;


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

/*!
  @function NewL
  
  @discussion Construct a CLDCNO17Document 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 CLDCNO17Document
  */
    static CLDCNO17Document* NewL(CEikApplication& aApp);

/*!
  @function NewLC
  
  @discussion Construct a CLDCNO17Document 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 CLDCNO17Document
  */
    static CLDCNO17Document* NewLC(CEikApplication& aApp);

/*!
  @function ~CLDCNO17Document
  
  @discussion Destroy the object
  */
    ~CLDCNO17Document();

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

private:

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

/*!
  @function CLDCNO17Document
  
  @discussion Perform the first phase of two phase construction 
  @param aApp Application creating this document
  */
    CLDCNO17Document(CEikApplication& aApp);
    };


#endif // __LDCNO17_DOCUMENT_H__

⌨️ 快捷键说明

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