Files
GUI/src/forms/TopBarWidget.h

18 lines
300 B
C
Raw Normal View History

2021-12-17 09:18:13 +08:00
//
// Created by Krad on 2021/12/16.
//
#ifndef GUI_TOPBARWIDGET_H
#define GUI_TOPBARWIDGET_H
#include <QWidget>
class TopBarWidget :public QWidget{
2021-12-28 10:43:59 +08:00
Q_OBJECT
2021-12-17 09:18:13 +08:00
public :
explicit TopBarWidget(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
};
#endif //GUI_TOPBARWIDGET_H