mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
23 lines
346 B
C++
23 lines
346 B
C++
#ifndef TEXTWIDGET_H
|
|
#define TEXTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class textwidget;
|
|
}
|
|
|
|
class textwidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QString className = this->metaObject()->className();
|
|
explicit textwidget(QWidget *parent = nullptr);
|
|
~textwidget();
|
|
|
|
private:
|
|
Ui::textwidget *ui;
|
|
};
|
|
|
|
#endif // TEXTWIDGET_H
|