QT_micro_climate_config/main.cpp

13 lines
185 B
C++
Raw Normal View History

2024-11-29 09:19:38 +00:00
#include "widget.h"
#include <QApplication>
2024-12-18 01:06:49 +00:00
#include <QLineEdit>
2024-11-29 09:19:38 +00:00
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}