23 lines
331 B
C++
23 lines
331 B
C++
#ifndef DRAWINGSETDIALOG_H
|
|
#define DRAWINGSETDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class DrawingSetDialog;
|
|
}
|
|
|
|
class DrawingSetDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DrawingSetDialog(QWidget *parent = 0);
|
|
~DrawingSetDialog();
|
|
|
|
private:
|
|
Ui::DrawingSetDialog *ui;
|
|
};
|
|
|
|
#endif // DRAWINGSETDIALOG_H
|