diff options
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 |
