BornAgain  1.19.0
Simulate and fit neutron and x-ray scattering at grazing incidence
IComponent.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // BornAgain: simulate and fit reflection and scattering
4 //
5 //! @file Param/Base/IComponent.h
6 //! @brief Defines interface IComponent.
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 USER_API
16 #ifndef BORNAGAIN_PARAM_BASE_ICOMPONENT_H
17 #define BORNAGAIN_PARAM_BASE_ICOMPONENT_H
18 
19 //! Root of class hierarchy for sample and instrument model.
20 
21 class IComponent {
22 public:
23  virtual ~IComponent() {}
24 };
25 
26 #endif // BORNAGAIN_PARAM_BASE_ICOMPONENT_H
27 #endif // USER_API
Root of class hierarchy for sample and instrument model.
Definition: IComponent.h:21
virtual ~IComponent()
Definition: IComponent.h:23