WUT_Computer_Science/EGUI/lab1/blogsview.h

27 lines
389 B
C
Raw Normal View History

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