13CAD
CAD-like software based on C++, Qt and VTK.
 All Classes Files Functions Variables Friends
helpdialog.h
Go to the documentation of this file.
1 
8 #ifndef HELPDIALOG_H
9 #define HELPDIALOG_H
10 
11 #include <QDialog>
12 
13 namespace Ui{
14  class HelpDialog;
15 }
16 
20 class HelpDialog : public QDialog
21 {
22  Q_OBJECT
23 
24  public:
25  explicit HelpDialog(QWidget *parent = nullptr);
26  ~HelpDialog();
27 
28  private:
29  Ui::HelpDialog *ui;
30 };
31 
32 #endif // HELPDIALOG_H
Definition: helpdialog.h:20