summaryrefslogtreecommitdiff
path: root/qmpinfowindow.hpp
blob: 9a1e389c178a35beec0df3d5f165886d06663383 (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 QMPINFOWINDOW_HPP
#define QMPINFOWINDOW_HPP

#include <QDialog>

namespace Ui {
	class qmpInfoWindow;
}

class qmpInfoWindow : public QDialog
{
	Q_OBJECT

	public:
		explicit qmpInfoWindow(QWidget *parent = 0);
		~qmpInfoWindow();
	public slots:
		void updateInfo();

	private:
		Ui::qmpInfoWindow *ui;
};

#endif // QMPINFOWINDOW_HPP