15 lines
200 B
C++
15 lines
200 B
C++
#ifndef COLORCOMBOBOX_H
|
|
#define COLORCOMBOBOX_H
|
|
|
|
#include <QComboBox>
|
|
|
|
class ColorComboBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ColorComboBox(QWidget* parent);
|
|
};
|
|
|
|
#endif // COLORCOMBOBOX_H
|