QtExamples/CustomQch/main.cpp

28 lines
538 B
C++
Raw Normal View History

#include "ifmetwindow.h"
#include <QApplication>
/*
* Copyright (C) 2021 All rights reserved.
*
* Author:
* github: https://github.com/xmuli
* blogs: https://ifmet.cn
*
* Qt Assistants 2021-03-08
*/
/*!
* \brief main
* \param argc
* \param argv
* \return
*/
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
IfmetWindow w;
w.show();
return a.exec();
}