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