📄 cmemorymanagement.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 + -