mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-05 01:55:47 +00:00
Added mathmech
+ added files * bug fix in mm_trj
This commit is contained in:
14
mathmech/main.cpp
Normal file
14
mathmech/main.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
#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();
|
||||
}
|
Reference in New Issue
Block a user