WUT_Computer_Science/EGUI/lab1/blogentry.h

23 lines
281 B
C
Raw Normal View History

2022-04-04 21:22:50 +02:00
#ifndef BLOGENTRY_H
#define BLOGENTRY_H
#include <QWidget>
namespace Ui {
class blogEntry;
}
class blogEntry : public QWidget
{
Q_OBJECT
public:
explicit blogEntry(QWidget *parent = nullptr);
~blogEntry();
private:
Ui::blogEntry *ui;
};
#endif // BLOGENTRY_H