##// END OF EJS Templates
Changes Variable from struct to class
Changes Variable from struct to class

File last commit:

r134:5404c5d53512
r163:8de0b7c96d22
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;
}