18 lines
303 B
C++
18 lines
303 B
C++
#pragma once
|
|
#include <QFrame>
|
|
#include <QComboBox>
|
|
|
|
class CompareNodeConfiguration : public QFrame
|
|
{
|
|
private:
|
|
QComboBox *const _type_select;
|
|
QComboBox *const _compare_select;
|
|
QComboBox *const _variable_a;
|
|
QComboBox *const _variable_b;
|
|
|
|
public:
|
|
CompareNodeConfiguration(QWidget *p = nullptr);
|
|
|
|
};
|
|
|