You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef PLAYER_H |
|
#define PLAYER_H |
|
|
|
#include <QMainWindow> |
|
|
|
namespace Ui { |
|
class player; |
|
} |
|
|
|
class player : public QMainWindow |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit player(QWidget *parent = nullptr); |
|
~player(); |
|
|
|
private: |
|
Ui::player *ui; |
|
}; |
|
|
|
#endif // PLAYER_H
|
|
|