mirror of
https://github.com/Quill-OS/quill.git
synced 2024-11-01 05:43:21 -07:00
23 lines
289 B
C
23 lines
289 B
C
|
#ifndef TEXTWIDGET_H
|
||
|
#define TEXTWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class textwidget;
|
||
|
}
|
||
|
|
||
|
class textwidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit textwidget(QWidget *parent = nullptr);
|
||
|
~textwidget();
|
||
|
|
||
|
private:
|
||
|
Ui::textwidget *ui;
|
||
|
};
|
||
|
|
||
|
#endif // TEXTWIDGET_H
|