##// END OF EJS Templates
Sub widget classes
Sub widget classes

File last commit:

r1095:9bc87db31c2c
r1095:9bc87db31c2c
Show More
CatalogueInspectorWidget.cpp
13 lines | 336 B | text/x-c | CppLexer
/ gui / src / Catalogue / CatalogueInspectorWidget.cpp
#include "Catalogue/CatalogueInspectorWidget.h"
#include "ui_CatalogueInspectorWidget.h"
CatalogueInspectorWidget::CatalogueInspectorWidget(QWidget *parent)
: QWidget(parent), ui(new Ui::CatalogueInspectorWidget)
{
ui->setupUi(this);
}
CatalogueInspectorWidget::~CatalogueInspectorWidget()
{
delete ui;
}