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.
nmWTAI-Platform/Include/mGui/mGuiAnal/iWxPfModelFitAS.h

27 lines
651 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "iWxPfModelFit.h"
class M_GUI_ANAL_EXPORT iWxPfModelFitAS : public iWxPfModelFit
{
Q_OBJECT
public:
explicit iWxPfModelFitAS(QWidget *parent = 0);
~iWxPfModelFitAS();
protected:
// 初始化
virtual void initUI_Tops();
/// @brief 由表格数据转换为绘制x-y曲线图的数据
/// @note 通常对y进行调整组织形式仍然是表格 getData 返回的形式
virtual bool adjustDataByModel(VVecVariant& vvec);
/// 具体的结果组织,注意,键值如果配置,则自动,否则则走默认
virtual bool _calModelParaRsts(QMap<QString, double>& mapParas);
};