1 #include "editor.h"
2 #include "ui_editor.h"
3
4 editor::editor(QWidget *parent)
5 : QMainWindow(parent), ui(new Ui::editor)
6 {
7 ui->setupUi(this);
8 }
9
10 editor::~editor()
11 {
12 delete ui;
13 }