QtExamples/CustomQch/ifmetwindow.cpp
xmuli f45a74c6e6
docs: Adding comments to the function API
Use doxygen style to write
2021-03-08 15:34:18 +08:00

22 lines
368 B
C++

#include "ifmetwindow.h"
#include "ui_ifmetwindow.h"
/*!
* \brief IfmetWindow::IfmetWindow 我的构造函数
* \param parent
*/
IfmetWindow::IfmetWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::IfmetWindow)
{
ui->setupUi(this);
}
/*!
* \brief IfmetWindow::~IfmetWindow 我的析构函数
*/
IfmetWindow::~IfmetWindow()
{
delete ui;
}