12 lines
197 B
C++
12 lines
197 B
C++
#ifndef FONTCOMBOBOX_H
|
|
#define FONTCOMBOBOX_H
|
|
|
|
#include "comboboxex.h"
|
|
|
|
class FontCombobox : public ComboBoxEx {
|
|
public:
|
|
FontCombobox(QWidget* parent = 0);
|
|
};
|
|
|
|
#endif // FONTCOMBOBOX_H
|