mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 19:23:03 +02:00
15 lines
208 B
C++
15 lines
208 B
C++
#include "blogentry.h"
|
|
#include "ui_blogentry.h"
|
|
|
|
blogEntry::blogEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::blogEntry)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
blogEntry::~blogEntry()
|
|
{
|
|
delete ui;
|
|
}
|