// For license of this file, see /LICENSE.md. #ifndef COMBOBOXWITHSTATUS_H #define COMBOBOXWITHSTATUS_H #include "gui/widgetwithstatus.h" #include class ComboBoxWithStatus : public WidgetWithStatus { Q_OBJECT public: // Constructors and destructors. explicit ComboBoxWithStatus(QWidget* parent = nullptr); virtual ~ComboBoxWithStatus() = default; inline QComboBox* comboBox() const { return static_cast(m_wdgInput); } }; #endif // COMBOBOXWITHSTATUS_H