mirea-projects/Third term/Industrial programming technologies/8_User_Form/main.cpp

12 lines
168 B
C++
Raw Permalink Normal View History

2024-09-27 05:31:03 +00:00
#include "userform.h"
2024-09-23 23:22:33 +00:00
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2024-09-27 05:31:03 +00:00
UserForm w;
2024-09-23 23:22:33 +00:00
w.show();
return a.exec();
}