summaryrefslogtreecommitdiffstats
path: root/src/server/helpwindow/helpwindow.h
blob: 2f0cdcb568ffd86c73c264dcebcaa4e002264eaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef HELPWINDOW_H
#define HELPWINDOW_H

#include <QDialog>

class HelpWindow : public QDialog
{
	Q_OBJECT

public:
	explicit HelpWindow(const QList<QAction*> &actions, QWidget *parent = nullptr);

};
#endif