qt-material-widgets/examples/main.cpp

14 lines
215 B
C++
Raw Normal View History

#include <QtWidgets/QApplication>
#include <QDebug>
2016-03-18 14:21:45 +00:00
#include "mainwindow.h"
int main(int argc, char *argv[])
{
2022-02-17 11:06:23 +00:00
QApplication a(argc, argv);
2017-09-28 21:28:08 +00:00
MainWindow window;
window.show();
2016-03-18 14:21:45 +00:00
return a.exec();
}