logplus/logPlus/formline.cpp
2025-10-29 17:23:30 +08:00

16 lines
232 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "formline.h"
#include "ui_formline.h"
//demo画线暂时不用
FormLine::FormLine(QWidget *parent) :
QWidget(parent),
ui(new Ui::FormLine)
{
ui->setupUi(this);
}
FormLine::~FormLine()
{
delete ui;
}