cmemorymanagement.h

来自「SYMBIAN中经典丛书何伟的实例代码」· C头文件 代码 · 共 33 行

H
33
字号
/* Copyright (c) 2006, Nokia Mobile Phones. All rights reserved */

#ifndef __CMEMORYMANAGEMENT_H__
#define __CMEMORYMANAGEMENT_H__

#include <e32base.h>

//////////////////////////////////////////////////////////////////////////////
//
// -----> CMemoryManagement (definition)
//
//
//////////////////////////////////////////////////////////////////////////////

class CMemoryManagement :public CBase
{
public:
  static CMemoryManagement* NewL(CConsoleBase* aConsole, TText aTText,TInt aTInt, TReal aTReal);
  static CMemoryManagement* NewLC(CConsoleBase* aConsole, TText aTText,TInt aTInt, TReal aTReal);
  TAny Print();			//void Print();
  TReal Division();		
  ~CMemoryManagement();
private:
	CMemoryMamagement();
	void ConstructL(CConsoleBase* aConsole, TText aTText,TInt aTInt, TReal aTReal);
private:
	TText iTText;
	TInt  iTInt;
	TReal iTReal;
	CConsoleBase* iConsole;
};

#endif

⌨️ 快捷键说明

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