aboutsummaryrefslogtreecommitdiff
path: root/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'player.h')
-rw-r--r--player.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/player.h b/player.h
new file mode 100644
index 0000000..aaa5a5d
--- /dev/null
+++ b/player.h
@@ -0,0 +1,21 @@
+#ifndef PLAYER_H
+#define PLAYER_H
+
+#include <QMainWindow>
+
+QT_BEGIN_NAMESPACE
+namespace Ui { class Player; }
+QT_END_NAMESPACE
+
+class Player : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ Player(QWidget *parent = nullptr);
+ ~Player();
+
+private:
+ Ui::Player *ui;
+};
+#endif // PLAYER_H