qt-material-widgets/__old/main.cpp

18 lines
292 B
C++
Raw Normal View History

2017-09-29 14:26:27 +00:00
#include "mainwindow.h"
#include <QApplication>
#include "style.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
//QFontDatabase db;
//QFont font(db.font("Roboto", "Regular", 11));
//a.setFont(font);
MainWindow w;
w.show();
return a.exec();
}