qt-material-widgets/main.cpp

18 lines
292 B
C++
Raw Normal View History

2016-03-18 14:21:45 +00:00
#include "mainwindow.h"
#include <QApplication>
#include "style.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2016-07-04 07:46:10 +00:00
//QFontDatabase db;
//QFont font(db.font("Roboto", "Regular", 11));
//a.setFont(font);
2016-03-18 14:21:45 +00:00
MainWindow w;
w.show();
return a.exec();
}