blob: 0a1fc3f37f0db7d5021f8ef7976e485cc29c510a (
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_;
};
}
|