This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/SoftwareDesign/Lab3/Lab3-2-2/main.cpp

15 lines
298 B
C++
Raw Normal View History

2022-05-07 08:21:38 +00:00
#include "widget.h"
#include <QApplication>
2022-05-10 09:37:13 +00:00
#include <QLoggingCategory>
#include <QtDebug>
2022-05-07 08:21:38 +00:00
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
2022-05-10 09:37:13 +00:00
QLoggingCategory::defaultCategory()->setEnabled(QtDebugMsg, true);
2022-05-07 08:21:38 +00:00
Widget w;
w.show();
return a.exec();
return 0;
}