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.
nmWATI/Include/mGui/mGuiJob/iWxAnaly.h

27 lines
358 B
C++

#pragma once
#include "mGuiJob_global.h"
#include "iWxBase.h"
class M_GUI_JOB_EXPORT iWxAnaly : public iWxBase
{
Q_OBJECT
public:
explicit iWxAnaly(QWidget *parent = 0);
~iWxAnaly();
// 初始化
virtual void initUI();
protected:
virtual bool checkInputs();
virtual void paintEvent(QPaintEvent *e);
protected:
};