aboutsummaryrefslogtreecommitdiff
path: root/player.cpp
blob: 9513423b6bd70ccc72ae9efa3fc55660bb1eca6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include "player.h"
#include "ui_player.h"

Player::Player(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::Player)
{
    ui->setupUi(this);
}

Player::~Player()
{
    delete ui;
}

void Player::on_actionQuit_triggered()
{
    std::cout << "Closing AleePlayer...\n";
    close();
}