📄 mappointinfo.h
字号:
/*
============================================================================
Name : MapPointInfo.h
Author :
Version : 1.0
Copyright : Your copyright notice
Description : CMapPointInfo declaration
============================================================================
*/
#ifndef MAPPOINTINFO_H
#define MAPPOINTINFO_H
// INCLUDES
#include <e32std.h>
#include <e32base.h>
#include "map/MapLayerInfo.h"
// CLASS DECLARATION
/**
* CMapPointInfo
* 地图中每个矩阵项信息
*/
class CMapPointInfo : public CBase
{
public:
// Constructors and destructor
/**
* Destructor.
*/
~CMapPointInfo();
/**
* Two-phased constructor.
*/
static CMapPointInfo* NewL();
/**
* Two-phased constructor.
*/
static CMapPointInfo* NewLC();
private:
/**
* Constructor for performing 1st stage construction
*/
CMapPointInfo();
/**
* EPOC default constructor for performing 2nd stage construction
*/
void ConstructL();
public:
TInt iXPos;
TInt iYPos;
RArray<TMapLayerInfo> iLayerInfos;
const TUint64 GetSerializeValue();
void DeserializeFromValueL(const TUint64 aValue);
};
#endif // MAPPOINTINFO_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -