summaryrefslogtreecommitdiffstats
blob: 8e6f0271bdf56e083462596303d96ffc62dff669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <QWidget>

namespace Swift {
	class QtAboutWidget : public QWidget {
		Q_OBJECT
		public:
			static QtAboutWidget* instance();

		private:
			QtAboutWidget();
			static QtAboutWidget* instance_;
	};
}