##// END OF EJS Templates
Uses factory in the VariableGraphWidget
Uses factory in the VariableGraphWidget

File last commit:

r126:5404c5d53512
r171:0055ef23e3bb
Show More
TimeWidget.cpp
12 lines | 218 B | text/x-c | CppLexer
#include "TimeWidget/TimeWidget.h"
#include "ui_TimeWidget.h"
TimeWidget::TimeWidget(QWidget *parent) : QWidget{parent}, ui{new Ui::TimeWidget}
{
ui->setupUi(this);
}
TimeWidget::~TimeWidget()
{
delete ui;
}