You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#pragma once
|
|
|
|
|
#include "GlobalDefine.h"
|
|
|
|
|
|
|
|
|
|
class COffsetTablePar
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
COffsetTablePar()
|
|
|
|
|
{
|
|
|
|
|
m_ParVal = 0;
|
|
|
|
|
};
|
|
|
|
|
public:
|
|
|
|
|
CString m_ParName;
|
|
|
|
|
CString m_ParShowName;
|
|
|
|
|
CString m_ParUnit;//<2F><>λ
|
|
|
|
|
double m_ParVal;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class COffsetTable
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
COffsetTable(void);
|
|
|
|
|
~COffsetTable(void);
|
|
|
|
|
void InitOffsetTable();
|
|
|
|
|
bool ReadOffsetTableFile(CString FilePath);
|
|
|
|
|
void SaveOffsetTableFile(CString FilePath);
|
|
|
|
|
double GetOffsetParVal(CString ParName);
|
|
|
|
|
public:
|
|
|
|
|
vector<COffsetTablePar> m_OffsetTableParVec;//recipe <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
};
|