##// END OF EJS Templates
Inits color scale widget
Inits color scale widget

File last commit:

r1042:8374414c3291
r1042:8374414c3291
Show More
ColorScaleEditor.cpp
13 lines | 273 B | text/x-c | CppLexer
#include "Visualization/ColorScaleEditor.h"
#include "ui_ColorScaleEditor.h"
ColorScaleEditor::ColorScaleEditor(QWidget *parent) : QDialog{parent}, ui{new Ui::ColorScaleEditor}
{
ui->setupUi(this);
}
ColorScaleEditor::~ColorScaleEditor() noexcept
{
delete ui;
}