mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:03:12 +02:00
23 lines
281 B
C
23 lines
281 B
C
|
|
#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
|