ifw-fcf  5.0.0-pre2
placeholderdev.h
Go to the documentation of this file.
1 
7 #ifndef PLACEHOLDERDEV_H
8 #define PLACEHOLDERDEV_H
9 
10 #include <QWidget>
11 
12 namespace Ui {
13 class DevWidget;
14 }
15 
16 //=====================
17 // PlaceholderDev
18 //=====================
26 class PlaceholderDevWdg : public QWidget
27 {
28  Q_OBJECT
29 
30  public:
37  explicit PlaceholderDevWdg(const QString& devName = QString(),
38  const QString& msg = QString(),
39  QWidget *parent = nullptr);
40 
44  virtual ~PlaceholderDevWdg();
45 
46  private:
47  Ui::DevWidget *ui;
48 };
49 
50 #endif // PLACEHOLDERDEV_H
The PlaceholderDevWdg class.
Definition: placeholderdev.h:27
virtual ~PlaceholderDevWdg()
Destructor.
Definition: placeholderdev.cpp:21
PlaceholderDevWdg(const QString &devName=QString(), const QString &msg=QString(), QWidget *parent=nullptr)
Constructor.
Definition: placeholderdev.cpp:9
Definition: mainwindow.hpp:7