aboutsummaryrefslogtreecommitdiff
path: root/player.h
blob: 687375f8a4ba8b8422929d3ee9a8be6b6751cbbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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 slots:
    void on_actionQuit_triggered();

private:
    Ui::Player *ui;
};
#endif // PLAYER_H