echidna/src/editor.cpp

19 lines
269 B
C++

#include "editor.h"
#include <ui_echidna.h>
EchidnaEditor::EchidnaEditor(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::EchidnaEditor)
{
ui->setupUi(this);
this->setCentralWidget(ui->centralWidget);
}
EchidnaEditor::~EchidnaEditor(){
delete ui;
}