Initial Commit. The packaging still does not work properly.
[confmgr] / src / addstep.h
1 #ifndef ADDSTEP_H
2 #define ADDSTEP_H
3
4 #include <QWidget>
5 #include "profile.h"
6
7 namespace Ui {
8     class AddStep;
9 }
10
11 class AddStep : public QWidget
12 {
13     Q_OBJECT
14
15 public:
16     explicit AddStep(QWidget *parent = 0);
17     ~AddStep();
18
19     void clear();
20
21 signals:
22     void StepAddedSuccessfully(Steps step);
23
24 public slots:
25     void AddOperationStep();
26
27 private:
28     Ui::AddStep *ui;
29     Steps mStep;
30 };
31
32 #endif // ADDSTEP_H