mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-27 21:59:29 +01:00
18 lines
No EOL
282 B
C++
18 lines
No EOL
282 B
C++
#ifndef HP_MDIVARIABLEEDIT_H
|
|
#define HP_MDIVARIABLEEDIT_H
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
|
|
class hp_mdiVariableEdit : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit hp_mdiVariableEdit(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // HP_MDIVARIABLEEDIT_H
|