moved the source back to src
[simple-xmbc-rem] / src / setupdialog.h
diff --git a/src/setupdialog.h b/src/setupdialog.h
new file mode 100644 (file)
index 0000000..aa76217
--- /dev/null
@@ -0,0 +1,24 @@
+#ifndef SETUPDIALOG_H
+#define SETUPDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+    class SetupDialog;
+}
+
+class SetupDialog : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit SetupDialog(QWidget *parent = 0);
+    ~SetupDialog();
+    void save();
+    void load();
+
+private:
+    Ui::SetupDialog *ui;
+};
+
+#endif // SETUPDIALOG_H