mirror of
https://github.com/Quill-OS/quill.git
synced 2024-11-01 05:43:21 -07:00
14 lines
236 B
C++
14 lines
236 B
C++
#include "librarywidget.h"
|
|
#include "ui_librarywidget.h"
|
|
|
|
libraryWidget::libraryWidget(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::libraryWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
libraryWidget::~libraryWidget()
|
|
{
|
|
delete ui;
|
|
}
|