aboutsummaryrefslogtreecommitdiff
path: root/player.h
blob: e9f1c712639a5dd3b2f40d278fb2e1cb96deab2f (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
25
26
#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_toggled(bool arg1);

    void on_actionQuit_triggered();

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