⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmemorymanagement.h

📁 《基于symbian os的手机开发与应用》
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -