BornAgain  1.19.0
Simulate and fit neutron and x-ray scattering at grazing incidence
version.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // qt-mvvm: Model-view-view-model framework for large GUI applications
4 //
5 //! @file mvvm/model/mvvm/core/version.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 Gennady Pospelov et al, Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************************************
14 
15 #ifndef BORNAGAIN_MVVM_MODEL_MVVM_CORE_VERSION_H
16 #define BORNAGAIN_MVVM_MODEL_MVVM_CORE_VERSION_H
17 
18 //! @file mvvm/model/mvvm/core/version.h
19 //! Automatically generated from mvvm_version.h.in
20 
21 #include <string>
22 
23 namespace ModelView {
24 
25 //! Returns major project version.
26 inline int ProjectVersionMajor()
27 {
28  const int project_version_major = 0;
29  return project_version_major;
30 }
31 
32 //! Returns minor project version.
33 inline int ProjectVersionMinor()
34 {
35  const int project_version_minor = 2;
36  return project_version_minor;
37 }
38 
39 //! Returns patch project version.
40 inline int ProjectVersionPatch()
41 {
42  const int project_version_path = 0;
43  return project_version_path;
44 }
45 
46 //! Returns project version string
47 inline std::string ProjectVersion()
48 {
49  const std::string project_version = "0.2.0";
50  return project_version;
51 }
52 
53 } // namespace ModelView
54 
55 #endif // BORNAGAIN_MVVM_MODEL_MVVM_CORE_VERSION_H
materialitems.h Collection of materials to populate MaterialModel.
int ProjectVersionMinor()
Returns minor project version.
Definition: version.h:33
int ProjectVersionPatch()
Returns patch project version.
Definition: version.h:40
std::string ProjectVersion()
Returns project version string.
Definition: version.h:47
int ProjectVersionMajor()
Returns major project version.
Definition: version.h:26