Modified welcome text file so it shows proper names in the reporsitory
[confmgr] / 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     void showStep(Steps &step);
21
22 signals:
23     void StepAddedSuccessfully(Steps step);
24
25 public slots:
26     void AddOperationStep();
27
28 private:
29     Ui::AddStep *ui;
30     Steps mStep;
31 };
32
33 #endif // ADDSTEP_H