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
2022-05-10 17:37:13 +08:00

14 lines
298 B
C++

#include "widget.h"
#include <QApplication>
#include <QLoggingCategory>
#include <QtDebug>
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
QLoggingCategory::defaultCategory()->setEnabled(QtDebugMsg, true);
Widget w;
w.show();
return a.exec();
return 0;
}