document.h

来自「SYMBIAN GPS NMEA协议实现」· C头文件 代码 · 共 37 行

H
37
字号
/************************************************************************/
/* Bluetooth Test      			The.Berlin.Factor   		April 2003	*/
/************************************************************************/

#ifndef __CDocument_H__
#define __CDocument_H__

#include <EikDoc.h>


class CEikApplication;



class CDocument : public CEikDocument {

public:

    static CDocument * NewL( CEikApplication & aApp );

    static CDocument * NewLC( CEikApplication & aApp );

    ~CDocument( );


protected:

    void ConstructL( );

    CDocument( CEikApplication & aApp );

    CEikAppUi * CreateAppUiL( );

};

#endif 

⌨️ 快捷键说明

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