mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 23:01:43 +00:00
15 lines
219 B
C++
15 lines
219 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
#include <QLocale>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QLocale::setDefault(QLocale::C);
|
|
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|