22 lines
463 B
C++
22 lines
463 B
C++
#ifndef ALGORITHMPARAMCONVERTER_H
|
||
#define ALGORITHMPARAMCONVERTER_H
|
||
|
||
#include "IVrConfig.h"
|
||
#include "SG_baseDataType.h"
|
||
|
||
// 砂轮盘孔定位算法参数(仅 cornerParam)
|
||
struct DiscHoleAlgorithmParams
|
||
{
|
||
DiscHoleAlgorithmParams();
|
||
|
||
SSG_cornerParam cornerParam;
|
||
};
|
||
|
||
class AlgorithmParamConverter
|
||
{
|
||
public:
|
||
static DiscHoleAlgorithmParams ToDiscHoleAlgorithmParams(const VrAlgorithmParams& algorithmParams);
|
||
};
|
||
|
||
#endif // ALGORITHMPARAMCONVERTER_H
|