ifw-fcf 6.0.0
Loading...
Searching...
No Matches
placeholderdev.h
Go to the documentation of this file.
1
7#ifndef PLACEHOLDERDEV_H
8#define PLACEHOLDERDEV_H
9
10#include <QWidget>
11
12namespace Ui {
13class DevWidget;
14}
15
16//=====================
17// PlaceholderDev
18//=====================
26class 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
Definition: mainwindow.hpp:7