mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
17 lines
217 B
C++
17 lines
217 B
C++
#ifndef TITLEBAR_H
|
|
#define TITLEBAR_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
class TitleBar : public QWidget
|
|
{
|
|
public:
|
|
TitleBar(QWidget *parent = nullptr);
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // TITLEBAR_H
|