oandxdocument.h

来自「Symbian OS C++ for Mobile Phones v3 Exam」· C头文件 代码 · 共 36 行

H
36
字号
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.

#ifndef OANDX_DOCUMENT_H
#define OANDX_DOCUMENT_H


#include <eikapp.h>
#include <akndoc.h>

class COandXAppUi;


class COandXDocument : public CAknDocument
/**
	Standard document class creates the application's UI,
	and stores and restores the game state.
 */
    {
public:
    static COandXDocument* NewL(CEikApplication& aApp);
 	virtual ~COandXDocument();

private:
    COandXDocument(CEikApplication& aApp);

public:
	// implement CEikDocument
    virtual CEikAppUi* CreateAppUiL();
    
private:
    COandXAppUi* iAppUi;
    };


#endif // OANDX_DOCUMENT_H

⌨️ 快捷键说明

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