diff options
| author | 2016-09-04 22:31:45 -0600 | |
|---|---|---|
| committer | 2016-09-07 22:08:21 -0600 | |
| commit | 71b613fa066a7d1825265347a99a4b9fd263cac5 (patch) | |
| tree | 7cff296dad8001b6585b84e5e57cafa24389451e /widget.h | |
| download | clockphoto-1.0.tar.xz clockphoto-1.0.zip | |
Initial commit.1.0
Diffstat (limited to 'widget.h')
| -rw-r--r-- | widget.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/widget.h b/widget.h new file mode 100644 index 0000000..fc92cf9 --- /dev/null +++ b/widget.h @@ -0,0 +1,14 @@ +#ifndef WIDGET_H +#define WIDGET_H + +#include <QDialog> + +class Widget : public QDialog +{ + Q_OBJECT + +public: + Widget(const QStringList &photos, const QString &dir, const QString &clockPhoto, QWidget *parent = 0); +}; + +#endif // WIDGET_H |
