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