Vespucci  1.0.0
scriptdialog.h
Go to the documentation of this file.
1 #ifndef SCRIPTDIALOG_H
2 #define SCRIPTDIALOG_H
3 
4 #include <QDialog>
6 
7 namespace Ui {
8 class ScriptDialog;
9 }
10 
11 class ScriptDialog : public QDialog
12 {
13  Q_OBJECT
14 
15 public:
16  explicit ScriptDialog(QWidget *parent, QSharedPointer<VespucciWorkspace> ws, const QString &dataset_key);
17  ~ScriptDialog();
18 
19 private slots:
20  void on_buttonBox_accepted();
21 
22 private:
23  Ui::ScriptDialog *ui;
24  QSharedPointer<VespucciDataset> dataset_;
25  QSharedPointer<VespucciWorkspace> workspace_;
26 
27 };
28 
29 #endif // SCRIPTDIALOG_H
Definition: ahcadialog.h:26