www.pudn.com > symbianex.rar > CMemoryManagement.h


/* Copyright (c) 2006, Nokia Mobile Phones. All rights reserved */ 
 
#ifndef __CMEMORYMANAGEMENT_H__ 
#define __CMEMORYMANAGEMENT_H__ 
 
#include  
 
////////////////////////////////////////////////////////////////////////////// 
// 
// -----> 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