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

File last commit:

r1130:9bc87db31c2c
r1132:41f5b65ec685
Show More
CatalogueSideBarWidget.cpp
13 lines | 322 B | text/x-c | CppLexer
/ gui / src / Catalogue / CatalogueSideBarWidget.cpp
#include "Catalogue/CatalogueSideBarWidget.h"
#include "ui_CatalogueSideBarWidget.h"
CatalogueSideBarWidget::CatalogueSideBarWidget(QWidget *parent)
: QWidget(parent), ui(new Ui::CatalogueSideBarWidget)
{
ui->setupUi(this);
}
CatalogueSideBarWidget::~CatalogueSideBarWidget()
{
delete ui;
}