BornAgain  1.19.0
Simulate and fit neutron and x-ray scattering at grazing incidence
app_constants.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // BornAgain: simulate and fit reflection and scattering
4 //
5 //! @file gui2/core/app_constants.h
6 //! @brief Defines class CLASS?
7 //!
8 //! @homepage http://www.bornagainproject.org
9 //! @license GNU General Public License v3 or higher (see COPYING)
10 //! @copyright Forschungszentrum Jülich GmbH 2020
11 //! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************************************
14 
15 #ifndef BORNAGAIN_GUI2_CORE_APP_CONSTANTS_H
16 #define BORNAGAIN_GUI2_CORE_APP_CONSTANTS_H
17 
18 #include <QString>
19 
20 namespace gui2::Constants {
21 
22 //! Constants for QSettings.
23 
24 const QString DataLoaderGroupKey = "dataloader";
25 const QString ParserPropertyGroupKey = "parserproperty";
26 
27 //! Initial state of some widgets.
28 
29 const inline bool live_simulation_default_on = false;
30 
31 } // namespace gui2::Constants
32 
33 #endif // BORNAGAIN_GUI2_CORE_APP_CONSTANTS_H
const QString DataLoaderGroupKey
Constants for QSettings.
Definition: app_constants.h:24
const QString ParserPropertyGroupKey
Definition: app_constants.h:25
const bool live_simulation_default_on
Initial state of some widgets.
Definition: app_constants.h:29