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