rstheme.h
来自「基于小波的SAR斑点处理」· C头文件 代码 · 共 39 行
H
39 行
//CRsThematicInfo class's defination
//GeoRSTheme.h Head File
//北京大学遥感所 余家忠 1999.8.22
#ifndef _RSTHEMATCINFO_H
#define _RSTHEMATCINFO_H
#include <afxtempl.h>
class CRsThematicInfo : public CObject
{
public:
//DECLARE_DYNCREATE(CRsThematicInfo)
CRsThematicInfo()
{
m_pdCenter = NULL;
m_pdCovariance = NULL;
}
~CRsThematicInfo()
{
if(m_pdCenter != NULL)
delete []m_pdCenter;
if(m_pdCovariance != NULL)
delete []m_pdCovariance;
}
public:
int m_nValue; //类的ID号
CString m_szClassName; //类名
COLORREF m_clrColor; //颜色
double *m_pdCenter; //中心向量
double *m_pdCovariance; //协方差
};
typedef CRsThematicInfo * LPRSTHEMATICINFO;
typedef CTypedPtrArray<CPtrArray, LPRSTHEMATICINFO> THEMATICINFOARRAY;
#endif //_RSTHEMATCINFO_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?