BornAgain  1.19.79
Simulate and fit neutron and x-ray scattering at grazing incidence
layer.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // BornAgain: simulate and fit reflection and scattering
4 //
5 //! @file GUI/ba3d/model/layer.h
6 //! @brief Defines Layer 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 2018
11 //! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************************************
14 
15 #ifndef BORNAGAIN_GUI_BA3D_MODEL_LAYER_H
16 #define BORNAGAIN_GUI_BA3D_MODEL_LAYER_H
17 
18 #include "GUI/ba3d/model/object.h"
19 
20 namespace GUI::RealSpace {
21 
22 //! Particle layer: a transparent box
23 class Layer : public Object {
24 public:
26 };
27 
28 } // namespace GUI::RealSpace
29 
30 #endif // BORNAGAIN_GUI_BA3D_MODEL_LAYER_H
Particle layer: a transparent box.
Definition: layer.h:23
Layer(VectorRange)
Definition: layer.cpp:19
A geometric object.
Definition: object.h:28
Defines Object class.
Range of coordinates.
Definition: def.h:70