3500/TrendGraph.cpp
2023-04-14 19:30:30 +08:00

15 lines
220 B
C++

#include "TrendGraph.h"
#include "ui_TrendGraph.h"
CTrendGraph::CTrendGraph(QWidget *parent) :
QWidget(parent),
ui(new Ui::CTrendGraph)
{
ui->setupUi(this);
}
CTrendGraph::~CTrendGraph()
{
delete ui;
}