BornAgain  1.19.0
Simulate and fit neutron and x-ray scattering at grazing incidence
main.cpp File Reference

Implements class CLASS? More...

Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Implements class CLASS?

Homepage:\n http://www.bornagainproject.org
License:\n GNU General Public License v3 or higher (see COPYING)
Authors
Scientific Computing Group at MLZ (see CITATION, AUTHORS)

Definition in file main.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 19 of file main.cpp.

20 {
21  QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates));
22 
23  QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
24  QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
25 
26  QApplication app(argc, argv);
27 
28  gui2::MainWindow win;
29  win.show();
30 
31  return app.exec();
32 }
Application main window.
Definition: mainwindow.h:34