summaryrefslogtreecommitdiffstatshomepage
path: root/Instructions.h
blob: 0bd32ededb0b726c8a6c0790d7c564e4eb355041 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef INSTRUCTIONS_H
#define INSTRUCTIONS_H

#include <QLabel>

class Instructions : public QLabel
{
	Q_OBJECT
public:
	Instructions(int step = 0, bool images = true, QWidget *parent = 0);
	QSize sizeHint() const;

};

#endif // INSTRUCTIONS_H