aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/Window.hpp
blob: 9f48f1295f8667f19e078e11208fdbda8ea430d9 (plain)
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
27
28
/*
 * Window.hpp
 *
 *  Created on: Nov 26, 2017
 *      Author: naopross
 */

#ifndef SRC_UI_WINDOW_HPP_
#define SRC_UI_WINDOW_HPP_

#include <QWidget>
#include <QPushButton>

namespace samb {

class Window : public QWidget {
Q_OBJECT
public:
    explicit Window(QWidget *parent = 0);
    ~Window();

private:
    QPushButton *m_quitBtn;
};

} /* namespace samb */

#endif /* SRC_UI_WINDOW_HPP_ */