Files
newspark110/customcontrols/dmcombobox.h
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

14 lines
213 B
C++

#ifndef DMCOMBOBOX_H
#define DMCOMBOBOX_H
#include <QComboBox>
class DMComboBox : public QComboBox {
Q_OBJECT
public:
DMComboBox(QWidget *parent = nullptr);
~DMComboBox();
};
#endif // DMCOMBOBOX_H