mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00
20 lines
267 B
C++
20 lines
267 B
C++
#ifndef VWAITINGWIDGET_H
|
|
#define VWAITINGWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QLabel;
|
|
|
|
|
|
class VWaitingWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VWaitingWidget(QWidget *p_parent = nullptr);
|
|
|
|
private:
|
|
void setupUI();
|
|
};
|
|
|
|
#endif // VWAITINGWIDGET_H
|