mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-19 03:49:42 +08:00
22 lines
501 B
C++
22 lines
501 B
C++
#pragma once
|
|
#include "pch.h"
|
|
#include "ZZ_Types.h"
|
|
using namespace std;
|
|
using namespace ZZ_MISCDEF::ZZ_DATAFILE;
|
|
using namespace ZZ_MISCDEF::ZZ_RUNPARAMS;
|
|
using namespace ZZ_MISCDEF::IRIS::FS;
|
|
|
|
class RadConverter :public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RadConverter(QObject* parent = nullptr);
|
|
~RadConverter();
|
|
public:
|
|
public:
|
|
int LoadCalibrationFrames(RunTimeGrabberParams struGrabberRTParams, vector<vector<CalFrame>> &struAllCalFrame);
|
|
private:
|
|
QString m_qstrCalFilePath;
|
|
private:
|
|
public slots:
|
|
}; |