1 /*!
2  * \file  include/TFEL/Material/OutOfBoundsPolicy.hxx
3  * \brief
4  * \author Thomas Helfer
5  * \brief 11 jan 2010
6  * \copyright Copyright (C) 2006-2018 CEA/DEN, EDF R&D. All rights
7  * reserved.
8  * This project is publicly released under either the GNU GPL Licence
9  * or the CECILL-A licence. A copy of thoses licences are delivered
10  * with the sources of TFEL. CEA or EDF may also distribute this
11  * project under specific licensing conditions.
12  */
13 
14 #ifndef LIB_TFEL_MATERIAL_OUTOFBOUNDSPOLICY_HXX
15 #define LIB_TFEL_MATERIAL_OUTOFBOUNDSPOLICY_HXX
16 
17 namespace tfel{
18 
19   namespace material {
20 
21     enum OutOfBoundsPolicy{
22       Warning,
23       Strict,
24       None
25     }; // end of enum OutOfBoundsPolicy
26 
27   } // end of namespace material
28 
29 } // end of namespace tfel
30 
31 #endif /* LIB_TFEL_MATERIAL_OUTOFBOUNDSPOLICY_HXX */
32 
33