16 lines
302 B
C++
16 lines
302 B
C++
#include "MainWindow.h"
|
|
#include <QApplication>
|
|
#include <QStyleFactory>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
// Set a modern style
|
|
app.setStyle(QStyleFactory::create("Fusion"));
|
|
|
|
MainWindow window;
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|