##// END OF EJS Templates
Defines actions for a data source items...
Defines actions for a data source items DataSourceItemAction is an object that will be connected to a QAction. When the QAction will be triggered, the DataSourceItemAction will be executed

File last commit:

r105:1002063c9aa2
r135:7a9a79ed3b02
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;
}