oandxdocument.h

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

H
37
字号
// 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();

	// From CEikDocument
	virtual CEikAppUi* CreateAppUiL();
	virtual void StoreL(CStreamStore& aStore,CStreamDictionary& aStreamDic) const;
	virtual void RestoreL(const CStreamStore& aStore,const CStreamDictionary& aStreamDic);
	virtual CFileStore* OpenFileL(TBool aDoOpen,const TDesC& aFilename,RFs& aFs);

private:
	COandXDocument(CEikApplication& aApp);

private:
	COandXAppUi* iAppUi;
	};

#endif // OANDX_DOCUMENT_H

⌨️ 快捷键说明

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