iVS3D v2.0.0
Loading...
Searching...
No Matches
helpdialog.h
1#ifndef HELPDIALOG_H
2#define HELPDIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
7class helpDialog;
8}
9
23class helpDialog : public QDialog
24{
25 Q_OBJECT
26
27public:
28 explicit helpDialog(QWidget *parent = nullptr);
30
31private:
32 Ui::helpDialog *ui;
33};
34
35#endif // HELPDIALOG_H
The helpDialog class holds key combination shortcuts for any action.
Definition helpdialog.h:24