1 /*!
2  * \file   CrystalStructure.hxx
3  * \brief
4  * \author Thomas Helfer
5  * \date   09 juin 2017
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_CRYSTALSTRUCTURE_HXX
15 #define LIB_TFEL_MATERIAL_CRYSTALSTRUCTURE_HXX
16 
17 namespace tfel{
18 
19   namespace material{
20 
21     //! \brief list of supported crystal structures
22     enum struct CrystalStructure{
23       Cubic, //!< cubic structure
24       BCC,   //!< body centered cubic structure
25       FCC,   //!< face centered cubic structure
26       HCP    //!< hexagonal closed-packed structures
27     }; // end of enum struct CrystalStructure
28 
29   } // end of namespace material
30 
31 } // end of namespace tfel
32 
33 #endif /* LIB_TFEL_MATERIAL_CRYSTALSTRUCTURE_HXX */
34