qt-material-widgets/example/main.cpp

18 lines
246 B
C++
Raw Normal View History

#include <QDebug>
2023-01-31 10:08:03 +00:00
#include <QtWidgets/QApplication>
2016-03-18 14:21:45 +00:00
#include "mainwindow.h"
2023-01-31 10:08:03 +00:00
int main(int argc, char* argv[])
2016-03-18 14:21:45 +00:00
{
2023-01-31 10:08:03 +00:00
QApplication a(argc, argv);
2023-01-31 10:08:03 +00:00
Q_INIT_RESOURCE(qt_material_widgets);
2017-09-28 21:28:08 +00:00
2023-01-31 10:08:03 +00:00
MainWindow window;
window.show();
2016-03-18 14:21:45 +00:00
2023-01-31 10:08:03 +00:00
return a.exec();
2016-03-18 14:21:45 +00:00
}