##// END OF EJS Templates
Inits variable controller and adds it to the SciQlop app
Inits variable controller and adds it to the SciQlop app

File last commit:

r110:1002063c9aa2
r111:6ecdf811fc1c
Show More
VariableInspectorWidget.cpp
14 lines | 316 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorWidget.cpp
#include <Variable/VariableInspectorWidget.h>
#include <ui_VariableInspectorWidget.h>
VariableInspectorWidget::VariableInspectorWidget(QWidget *parent)
: QWidget{parent}, ui{new Ui::VariableInspectorWidget}
{
ui->setupUi(this);
}
VariableInspectorWidget::~VariableInspectorWidget()
{
delete ui;
}