##// END OF EJS Templates
Toolbar icons
Toolbar icons

File last commit:

r1095:9bc87db31c2c
r1097:41f5b65ec685
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;
}