Initial Commit. The packaging still does not work properly.
[confmgr] / addstep.h
diff --git a/addstep.h b/addstep.h
new file mode 100644 (file)
index 0000000..f613879
--- /dev/null
+++ b/addstep.h
@@ -0,0 +1,32 @@
+#ifndef ADDSTEP_H
+#define ADDSTEP_H
+
+#include <QWidget>
+#include "profile.h"
+
+namespace Ui {
+    class AddStep;
+}
+
+class AddStep : public QWidget
+{
+    Q_OBJECT
+
+public:
+    explicit AddStep(QWidget *parent = 0);
+    ~AddStep();
+
+    void clear();
+
+signals:
+    void StepAddedSuccessfully(Steps step);
+
+public slots:
+    void AddOperationStep();
+
+private:
+    Ui::AddStep *ui;
+    Steps mStep;
+};
+
+#endif // ADDSTEP_H