aboutsummaryrefslogtreecommitdiffstats
path: root/widget.h
blob: fc92cf90c9128b2c52b8bf39fbd3600f5019e8b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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