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.
29 lines
647 B
C++
29 lines
647 B
C++
#pragma once
|
|
#include "GlobalDefine.h"
|
|
|
|
class COffsetTablePar
|
|
{
|
|
public:
|
|
COffsetTablePar()
|
|
{
|
|
m_ParVal = 0;
|
|
};
|
|
public:
|
|
CString m_ParName;
|
|
CString m_ParShowName;
|
|
CString m_ParUnit;//µ¥Î»
|
|
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 ²¹³¥±í
|
|
}; |