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

#include <QDialog>

class QShowEvent;

class HelpWindow : public QDialog
{
	Q_OBJECT

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

};
#endif