23 lines
321 B
C++
23 lines
321 B
C++
#ifndef RELAYSCROLLBOX_H
|
|
#define RELAYSCROLLBOX_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class RelayScrollBox;
|
|
}
|
|
|
|
class RelayScrollBox : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RelayScrollBox(QWidget *parent = nullptr);
|
|
~RelayScrollBox();
|
|
|
|
private:
|
|
Ui::RelayScrollBox *ui;
|
|
};
|
|
|
|
#endif // RELAYSCROLLBOX_H
|