CAD Viewer
help.h
Go to the documentation of this file.
1 //---------------------------------------------------------------------------//
9 //---------------------------------------------------------------------------//
10 
11 //---------------------------------------------------------------------------//
12 // preprocessor directives
13 //---------------------------------------------------------------------------//
14 
15 #ifndef HELP_H
16 #define HELP_H
17 
18 #include <QDialog>
19 
20 //---------------------------------------------------------------------------//
21 // Class Declarations
22 //---------------------------------------------------------------------------//
23 
24 namespace Ui
25 {
26  class Help;
27 }
28 
33 class Help : public QDialog
34 {
35  Q_OBJECT
36 
37 public:
40  explicit Help(QWidget *parent = nullptr);
41 
43  ~Help();
44 
45 private:
46  Ui::Help *ui;
47 };
48 
49 #endif // HELP_H
Help Dialog class.
Definition: help.h:34
~Help()
Destructor for the Help Dialog.
Definition: help.cpp:30
Ui::Help * ui
Pointer to the UI.
Definition: help.h:46
Help(QWidget *parent=nullptr)
Constructor for the Help Dialog.
Definition: help.cpp:23
Definition: help.h:25